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/util.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/util.py')
-rw-r--r-- | git/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/util.py b/git/util.py index 7f18eed9..d00de1e4 100644 --- a/git/util.py +++ b/git/util.py @@ -17,7 +17,7 @@ import time from functools import wraps from git.compat import is_win -from gitdb.util import (# NOQA +from gitdb.util import (# NOQA @IgnorePep8 make_sha, LockedFD, # @UnusedImport file_contents_ro, # @UnusedImport |