Skip to content

Commit

Permalink
Fixed buffer problem (closes #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
msiemens committed Mar 16, 2013
1 parent 49c9e89 commit d886874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PyGitUp/git_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def run(self, name, *args, **kwargs):

# Capture output
while True:
output = cmd.stdout.read(4)
output = cmd.stdout.read(1)

# Print to stdout
if tostdout:
Expand Down

0 comments on commit d886874

Please # to comment.