diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-15 14:52:40 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-16 02:46:33 +0200 |
commit | 4486bcbbf49ad0eacf2d8229fb0e7e3432f440d9 (patch) | |
tree | b3eaeea98f0de34084aa30eb1e1da0b32632d5b0 /git/util.py | |
parent | b02662d4e870a34d2c6d97d4f702fcc1311e5177 (diff) | |
download | gitpython-4486bcbbf49ad0eacf2d8229fb0e7e3432f440d9.tar.gz |
ci, deps: no PY26, ddt>=1.1.1, CIs `pip install test-requirements`
+ Use environment-markers in requirement files (see
http://stackoverflow.com/a/33451105/548792).
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 fdb12529..c3c8e562 100644 --- a/git/util.py +++ b/git/util.py @@ -56,7 +56,7 @@ log = logging.getLogger(__name__) #: so the errors marked with this var are considered "acknowledged" ones, awaiting remedy, #: till then, we wish to hide them. HIDE_WINDOWS_KNOWN_ERRORS = is_win and os.environ.get('HIDE_WINDOWS_KNOWN_ERRORS', True) -HIDE_WINDOWS_FREEZE_ERRORS = is_win and os.environ.get('HIDE_WINDOWS_FREEZE_ERRORS', HIDE_WINDOWS_KNOWN_ERRORS) +HIDE_WINDOWS_FREEZE_ERRORS = is_win and os.environ.get('HIDE_WINDOWS_FREEZE_ERRORS', True) #{ Utility Methods |