From 6a25d1ca38f2a1a8eecb20185f368c98680f7035 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Thu, 1 Jun 2017 12:44:08 -0700 Subject: Move implicit string concat to a noqa --- paramiko/auth_handler.py | 4 ++-- 1 file 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 -- cgit v1.2.1