summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/management/color.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/django/core/management/color.py b/django/core/management/color.py
index 11a9283df9..612afff4e2 100644
--- a/django/core/management/color.py
+++ b/django/core/management/color.py
@@ -35,6 +35,9 @@ def color_style():
for role in termcolors.PALETTES[termcolors.NOCOLOR_PALETTE]:
format = color_settings.get(role,{})
setattr(style, role, termcolors.make_style(**format))
+ # For backwards compatibility,
+ # set style for ERROR_OUTPUT == ERROR
+ setattr(style, 'ERROR_OUTPUT', style.ERROR)
else:
style = no_style()
return style