Commit 33117632 by Michael DeHaan

Merge pull request #213 from mcodd/devel

bugfix for ssh_config patch
parents 89c01303 d34160ed
......@@ -95,7 +95,7 @@ class ParamikoConnection(object):
if 'hostname' in credentials:
self.host = credentials['hostname']
if 'port' in credentials:
self.port = credentials['port']
self.port = int(credentials['port'])
if 'user' in credentials:
user = credentials['user']
if 'identityfile' in credentials:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment