diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-08-28 11:51:19 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-08-28 11:51:19 -0700 |
commit | aae69d5d9cf083ae29d92ac33a5ebd2607c1e8bc (patch) | |
tree | ab057efb0f5b61c249270e3f6f55bc5920728641 | |
parent | 8b2a02b7a6579407a41a17de35fb2b92d530413a (diff) |
flake8
-rw-r--r-- | paramiko/auth_handler.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/paramiko/auth_handler.py b/paramiko/auth_handler.py index 0b13722c..6c515cb6 100644 --- a/paramiko/auth_handler.py +++ b/paramiko/auth_handler.py @@ -249,7 +249,8 @@ class AuthHandler (object): m.add_string(password) elif self.auth_method == 'publickey': m.add_boolean(True) - # Use certificate contents, if available, plain pubkey otherwise + # Use certificate contents, if available, plain pubkey + # otherwise if self.private_key.public_blob: m.add_string(self.private_key.public_blob.key_type) m.add_string(self.private_key.public_blob.key_blob) |