From d8868740e6109f3eba18289fe07d607847dce4a6 Mon Sep 17 00:00:00 2001 From: Markus Siemens Date: Sat, 16 Mar 2013 18:08:48 +0100 Subject: [PATCH] Fixed buffer problem (closes #1) --- PyGitUp/git_wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyGitUp/git_wrapper.py b/PyGitUp/git_wrapper.py index 7f48e3e..33d0490 100644 --- a/PyGitUp/git_wrapper.py +++ b/PyGitUp/git_wrapper.py @@ -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: