summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2016-10-13 00:42:04 +0200
committerKostis Anagnostopoulos <ankostis@gmail.com>2016-10-14 17:24:26 +0200
commit5e6827e98c2732863857c0887d5de4138a8ae48b (patch)
tree151935deb4a0a661bc2156388581a18359a9c342 /git/cmd.py
parent85f38a1bbc8fc4b19ebf2a52a3640b59a5dcf9fe (diff)
downloadgitpython-5e6827e98c2732863857c0887d5de4138a8ae48b.tar.gz
remote, #525: FIX BUG push-cmd misses error messages
+ Bug discovered after enabling TC in prev commit and rework of fetch. + remote_tc: unitestize assertions. + util: DEL unused `_mktemp()`.
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/cmd.py b/git/cmd.py
index ebf2bd75..e3efb25c 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -247,7 +247,7 @@ class Git(LazyMixin):
def __getattr__(self, attr):
return getattr(self.proc, attr)
- def wait(self, stderr=b''):
+ def wait(self, stderr=b''): # TODO: Bad choice to mimic `proc.wait()` but with different args.
"""Wait for the process and return its status code.
:param stderr: Previously read value of stderr, in case stderr is already closed.