diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2018-09-18 20:31:30 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-09-18 20:31:30 -0700 |
commit | f861ef079f5078c356d40421d45c8be170ef2c7a (patch) | |
tree | f587f8d1e8d37f094358527b59eb0abc7e2533eb | |
parent | ef900b70c136cf8a25c2105aba09a5d79c4686cb (diff) | |
parent | a5ce12d4830e9d3661d1e4ccddef18e112386ee1 (diff) |
Merge branch '2.0' into 2.1
-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 6465a784..4a29670d 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -1972,7 +1972,7 @@ class Transport(threading.Thread, ClosingContextManager): # itself literally MSG_UNIMPLEMENTED, in which case, we # just shut up to avoid causing a useless loop). name = MSG_NAMES[ptype] - warning = "Oops, unhandled type {} ({!r})".format( + warning = "Oops, unhandled type {0} ({1!r})".format( ptype, name ) self._log(WARNING, warning) |