diff options
Diffstat (limited to 'git/util.py')
-rw-r--r-- | git/util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git/util.py b/git/util.py index 57e056c3..568d9328 100644 --- a/git/util.py +++ b/git/util.py @@ -51,6 +51,7 @@ __all__ = ("stream_copy", "join_path", "to_native_path_windows", "to_native_path #: 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) #{ Utility Methods |