Skip to content

Commit

Permalink
Merge pull request #55 from bkabrda/patch-1
Browse files Browse the repository at this point in the history
Use print() function instead of print statement for python 3 compatibility.
  • Loading branch information
tomerfiliba committed Feb 8, 2013
2 parents 0a7c55a + afc9160 commit ab43a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plumbum/paramiko_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def communicate(self):
line = infile.readline()
except (ValueError, IOError):
line = None
print "!!", repr(line)
print("!! %s", (repr(line),))
if not line:
infile.close()
infile = None
Expand Down

0 comments on commit ab43a74

Please sign in to comment.