Closed GoogleCodeExporter closed 8 years ago
This appears to fix it:
*** manager.py.save1 Tue Oct 20 17:20:51 2009
--- manager.py Thu Dec 10 16:55:14 2009
***************
*** 205,211 ****
if data == self.EOF:
dest.close()
else:
! print >>dest, data,
def open_files(self, host):
"""Called from another thread to create files for stdout and stderr.
--- 205,211 ----
if data == self.EOF:
dest.close()
else:
! dest.write(data)
def open_files(self, host):
"""Called from another thread to create files for stdout and stderr.
Original comment by mark.d.k...@gmail.com
on 10 Dec 2009 at 9:56
I would have gotten back to you on this earlier, but Google Code wasn't sending
me
emails about updates to issues. Sorry about that. I just tested this and was
able to
reproduce the problem. I'm going to look into this for a few more minutes, but
I
think I'll probably end up applying your patch as-is. Thanks for finding the
problem
and looking into it.
Original comment by amcna...@gmail.com
on 16 Feb 2010 at 7:59
I've applied your patch and pushed the changes into Git. This will be included
in the
next release of PSSH. Thanks.
By the way, you learn something new every day. I didn't realize that Python's
print
statement adds spaces even when used with a trailing comma. Maybe I knew this
at some
point, but it was a surprise to me today. :)
Original comment by amcna...@gmail.com
on 16 Feb 2010 at 8:13
Original issue reported on code.google.com by
mark.d.k...@gmail.com
on 7 Dec 2009 at 7:24