Skip to content

Commit

Permalink
Use bytestring for Paramiko stderr log
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer authored and jelmer committed Sep 13, 2015
1 parent bc52b03 commit 74a3e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dulwich/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ def __init__(self, client, channel, progress_stderr=None):
self.progress_stderr = progress_stderr
self.should_monitor = bool(progress_stderr) or True
self.monitor_thread = None
self.stderr = ''
self.stderr = b''

# Channel must block
self.channel.setblocking(True)
Expand Down

0 comments on commit 74a3e90

Please sign in to comment.