summaryrefslogtreecommitdiff
path: root/paramiko/auth_handler.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-06-01 12:44:08 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-06-01 12:44:08 -0700
commit6a25d1ca38f2a1a8eecb20185f368c98680f7035 (patch)
treee316dfaffba5250e855955ce65d63d0b7737f270 /paramiko/auth_handler.py
parentc9fb0f0c02ba0d37f77c66f29b987563cd0fe09f (diff)
downloadparamiko-6a25d1ca38f2a1a8eecb20185f368c98680f7035.tar.gz
Move implicit string concat to a noqa
Diffstat (limited to 'paramiko/auth_handler.py')
-rw-r--r--paramiko/auth_handler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/auth_handler.py b/paramiko/auth_handler.py
index 9ae5b7ef..33f01da6 100644
--- a/paramiko/auth_handler.py
+++ b/paramiko/auth_handler.py
@@ -395,8 +395,8 @@ class AuthHandler (object):
(self.auth_username != username)):
self.transport._log(
WARNING,
- 'Auth rejected because the client attempted to change '
- 'username in mid-flight')
+ 'Auth rejected because the client attempted to change username in mid-flight' # noqa
+ )
self._disconnect_no_more_auth()
return
self.auth_username = username