summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-12-08 14:32:58 +0100
committerSebastian Thiel <byronimo@gmail.com>2016-12-08 14:33:44 +0100
commit06914415434cf002f712a81712024fd90cea2862 (patch)
tree7832c2c06723aa99c5abac198f52ac3daeacd8b3
parent2f207e0e15ad243dd24eafce8b60ed2c77d6e725 (diff)
downloadgitpython-06914415434cf002f712a81712024fd90cea2862.tar.gz
chore(repo): remove comment
As it does not appear to be the case. See https://github.com/gitpython-developers/GitPython/issues/547#issuecomment-257270026 [skip ci]
-rw-r--r--git/repo/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index 0f85e3d9..3d2abe44 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -875,7 +875,7 @@ class Repo(object):
if progress:
handle_process_output(proc, None, progress.new_message_handler(), finalize_process)
else:
- (stdout, stderr) = proc.communicate() # FIXME: Will block if outputs are big!
+ (stdout, stderr) = proc.communicate()
log.debug("Cmd(%s)'s unused stdout: %s", getattr(proc, 'args', ''), stdout)
finalize_process(proc, stderr=stderr)