summaryrefslogtreecommitdiff
path: root/paramiko/auth_handler.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-08-28 11:51:19 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-08-28 11:51:19 -0700
commitaae69d5d9cf083ae29d92ac33a5ebd2607c1e8bc (patch)
treeab057efb0f5b61c249270e3f6f55bc5920728641 /paramiko/auth_handler.py
parent8b2a02b7a6579407a41a17de35fb2b92d530413a (diff)
downloadparamiko-aae69d5d9cf083ae29d92ac33a5ebd2607c1e8bc.tar.gz
flake8
Diffstat (limited to 'paramiko/auth_handler.py')
-rw-r--r--paramiko/auth_handler.py3
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)