diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-06-01 01:21:17 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-06-01 01:21:17 +0200 |
commit | a935501a2f62d103cf9d69d775399dae2e7dfead (patch) | |
tree | 6eca51a7e371e3767d6842d11c9e101fca6aca4b /lib/git | |
parent | 26719d252dd8e3a53c08da2ed3c3a8d62fbbc30a (diff) | |
download | gitpython-a935501a2f62d103cf9d69d775399dae2e7dfead.tar.gz |
fixed http://gitorious.org/projects/git-python/repos/apollo13/comments#comment_105 my mistake ;) I'll investigate this further, but I think we are on the safe side now...
Diffstat (limited to 'lib/git')
-rw-r--r-- | lib/git/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/cmd.py b/lib/git/cmd.py index 80ef6a78..ac449e91 100644 --- a/lib/git/cmd.py +++ b/lib/git/cmd.py @@ -103,8 +103,8 @@ class Git(MethodMissingMixin): ) # Wait for the process to return - status = proc.wait() stdout_value = proc.stdout.read() + status = proc.wait() proc.stdout.close() # Strip off trailing whitespace by default |