summaryrefslogtreecommitdiff
path: root/paramiko/transport.py
diff options
context:
space:
mode:
Diffstat (limited to 'paramiko/transport.py')
-rw-r--r--paramiko/transport.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/paramiko/transport.py b/paramiko/transport.py
index 9436111b..569c5cdd 100644
--- a/paramiko/transport.py
+++ b/paramiko/transport.py
@@ -1008,7 +1008,7 @@ class Transport(threading.Thread, ClosingContextManager):
:raises:
`.SSHException` -- if the request is rejected, the session ends
- prematurely or there is a timeout openning a channel
+ prematurely or there is a timeout opening a channel
.. versionchanged:: 1.15
Added the ``window_size`` and ``max_packet_size`` arguments.
@@ -1692,7 +1692,7 @@ class Transport(threading.Thread, ClosingContextManager):
def auth_interactive_dumb(self, username, handler=None, submethods=""):
"""
- Autenticate to the server interactively but dumber.
+ Authenticate to the server interactively but dumber.
Just print the prompt and / or instructions to stdout and send back
the response. This is good for situations where partial auth is
achieved by key and then the user has to enter a 2fac token.
@@ -2058,7 +2058,7 @@ class Transport(threading.Thread, ClosingContextManager):
reply.add_string("")
reply.add_string("en")
# NOTE: Post-open channel messages do not need checking; the above will
- # reject attemps to open channels, meaning that even if a malicious
+ # reject attempts to open channels, meaning that even if a malicious
# user tries to send a MSG_CHANNEL_REQUEST, it will simply fall under
# the logic that handles unknown channel IDs (as the channel list will
# be empty.)