Skip to content
Snippets Groups Projects
Commit c380104a2423 authored by Jeff Forcier's avatar Jeff Forcier
Browse files

Merge branch '1.11'

No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,8 @@
* #179: Fix a missing variable causing errors when an ssh_config file has a
non-default AddressFamily set. Thanks to Ed Marshall & Tomaz Muraus for catch
& patch.
* #200: Fix an exception-causing typo in `demo_simple.py`. Thanks to Alex
Buchanan for catch & Dave Foster for patch.
v1.11.1 (20th Sep 2013)
-----------------------
......
......@@ -63,7 +63,7 @@
try:
client = paramiko.SSHClient()
client.load_system_host_keys()
client.set_missing_host_key_policy(paramiko.WarningPolicy)
client.set_missing_host_key_policy(paramiko.WarningPolicy())
print '*** Connecting...'
client.connect(hostname, port, username, password)
chan = client.invoke_shell()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment