Skip to content

Commit

Permalink
Merge pull request #264 from hackdna/patch-1
Browse files Browse the repository at this point in the history
Change maxsplit argument value to 1.
  • Loading branch information
hobbestigrou committed Oct 12, 2016
2 parents fafce1d + 174a4c4 commit 177a64f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabtools/vagrant.py
Expand Up @@ -37,7 +37,7 @@ def ssh_config(name=''):

config = {}
for line in output.splitlines()[1:]:
key, value = line.strip().split(' ', 2)
key, value = line.strip().split(' ', 1)
config[key] = value
return config

Expand Down

0 comments on commit 177a64f

Please sign in to comment.