diff options
author | robot-piglet <[email protected]> | 2025-06-22 18:50:56 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-06-22 19:04:42 +0300 |
commit | c7cbc6d480c5488ff6e921c709680fd2c1340a10 (patch) | |
tree | 10843f44b67c0fb5717ad555556064095f701d8c /contrib/python/Twisted/py3/twisted/conch/error.py | |
parent | 26d391cdb94d2ce5efc8d0cc5cea7607dc363c0b (diff) |
Intermediate changes
commit_hash:28750b74281710ec1ab5bdc2403c8ab24bdd164b
Diffstat (limited to 'contrib/python/Twisted/py3/twisted/conch/error.py')
-rw-r--r-- | contrib/python/Twisted/py3/twisted/conch/error.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/Twisted/py3/twisted/conch/error.py b/contrib/python/Twisted/py3/twisted/conch/error.py index a923b9a4c4a..fcf2c1d2f43 100644 --- a/contrib/python/Twisted/py3/twisted/conch/error.py +++ b/contrib/python/Twisted/py3/twisted/conch/error.py @@ -90,7 +90,7 @@ class HostKeyChanged(Exception): """ def __init__(self, offendingEntry, path, lineno): - Exception.__init__(self) + Exception.__init__(self, offendingEntry, path, lineno) self.offendingEntry = offendingEntry self.path = path self.lineno = lineno |