diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-10-10 14:31:45 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-10-10 14:31:45 -0700 |
commit | a01277c93f56013f7a856e36b5e497a1eab19753 (patch) | |
tree | 793fa2011d486dc3632fd39b96168b5cd89532c5 | |
parent | 5aefc0ad37811000dfc2c27ffd6ad040d6971bbd (diff) |
Typofix
-rw-r--r-- | paramiko/transport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py index 1ab60841..711f395e 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -837,7 +837,7 @@ class Transport(threading.Thread, ClosingContextManager): if event.is_set(): break elif start_ts + timeout < time.time(): - raise SSHException('Timeout openning channel.') + raise SSHException('Timeout opening channel.') chan = self._channels.get(chanid) if chan is not None: return chan |