Skip to content

Commit

Permalink
Rework re paramiko#239 to work off post-1.13 codebase. Closes paramik…
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Aug 26, 2014
1 parent d34569e commit 1b6cc96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def parse(self, file_obj):
"""
host = {"host": ['*'], "config": {}}
for line in file_obj:
line = line.rstrip('\n').lstrip()
line = line.rstrip('\r\n').lstrip()
if (line == '') or (line[0] == '#'):
continue
if '=' in line:
Expand Down

0 comments on commit 1b6cc96

Please sign in to comment.