diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-13 00:42:04 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-14 17:24:26 +0200 |
commit | 5e6827e98c2732863857c0887d5de4138a8ae48b (patch) | |
tree | 151935deb4a0a661bc2156388581a18359a9c342 /git/cmd.py | |
parent | 85f38a1bbc8fc4b19ebf2a52a3640b59a5dcf9fe (diff) | |
download | gitpython-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |