mirror of https://github.com/django/django.git
Refs #34768 -- Ignored lack of just_fix_windows_console() for colorama < 0.4.6.
This commit is contained in:
parent
bcd80de8b5
commit
048d75aeb1
|
@ -13,7 +13,13 @@ try:
|
|||
|
||||
# Avoid initializing colorama in non-Windows platforms.
|
||||
colorama.just_fix_windows_console()
|
||||
except (ImportError, OSError):
|
||||
except (
|
||||
AttributeError, # colorama <= 0.4.6.
|
||||
ImportError, # colorama is not installed.
|
||||
# If just_fix_windows_console() accesses sys.stdout with
|
||||
# WSGIRestrictedStdout.
|
||||
OSError,
|
||||
):
|
||||
HAS_COLORAMA = False
|
||||
else:
|
||||
HAS_COLORAMA = True
|
||||
|
|
Loading…
Reference in New Issue