Skip to content

Commit

Permalink
Merge branch '2.0' into 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Sep 19, 2018
2 parents 3ae4971 + e6f9842 commit ef900b7
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions paramiko/transport.py
Expand Up @@ -1972,12 +1972,10 @@ def run(self):
# itself literally MSG_UNIMPLEMENTED, in which case, we
# just shut up to avoid causing a useless loop).
name = MSG_NAMES[ptype]
self._log(
WARNING,
"Oops, unhandled type {} ({!r})".format(
ptype, name
),
warning = "Oops, unhandled type {} ({!r})".format(
ptype, name
)
self._log(WARNING, warning)
if ptype != MSG_UNIMPLEMENTED:
msg = Message()
msg.add_byte(cMSG_UNIMPLEMENTED)
Expand Down

0 comments on commit ef900b7

Please sign in to comment.