summaryrefslogtreecommitdiff
path: root/paramiko
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-10-10 14:31:45 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-10-10 14:31:45 -0700
commita01277c93f56013f7a856e36b5e497a1eab19753 (patch)
tree793fa2011d486dc3632fd39b96168b5cd89532c5 /paramiko
parent5aefc0ad37811000dfc2c27ffd6ad040d6971bbd (diff)
downloadparamiko-a01277c93f56013f7a856e36b5e497a1eab19753.tar.gz
Typofix
Diffstat (limited to 'paramiko')
-rw-r--r--paramiko/transport.py2
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