diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2018-09-18 20:31:58 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-09-18 20:31:58 -0700 |
commit | 4308ac00911754f4944b14efbfe4b677a7e92900 (patch) | |
tree | 83c513d7407be8e06f3da9071eb525b9409fc925 | |
parent | 8916b5d8030d48dc9da005df801f3417bc16d39a (diff) | |
parent | 49d1a60dc0ba8e62ba80d176c6e79cda184e6cb5 (diff) |
Merge branch '2.2' into 2.3
-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 475fdfb3..22348f87 100644 --- a/paramiko/transport.py +++ b/paramiko/transport.py @@ -2030,7 +2030,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) |