diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2012-08-13 11:01:09 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2012-09-24 18:56:45 -0700 |
commit | 7ead8d9c70ab81023e2a0c37e0f3ab7ebf9814af (patch) | |
tree | b449d0fa368cb6b572c9ae506cfbd2788c764417 | |
parent | 400ea089d585a7a1e81b7fa26f6862b61f36f954 (diff) |
Fix unbound local variable exception
(cherry picked from commit 503d7e62602cfe3ed63a4f44fba12874a17aa199)
-rw-r--r-- | paramiko/client.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/paramiko/client.py b/paramiko/client.py index 859d6008..557cbb73 100644 --- a/paramiko/client.py +++ b/paramiko/client.py @@ -424,6 +424,7 @@ class SSHClient (object): """ saved_exception = None two_factor = False + allowed_types = [] if pkey is not None: try: |