summaryrefslogtreecommitdiff
path: root/django/utils/termcolors.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-11-17 18:33:03 -0500
committerTim Graham <timograham@gmail.com>2015-11-18 10:26:39 -0500
commitc7adfe941bb1e5243c9d160bae33fa88764ce073 (patch)
tree812aa2c4fafa5fb11a05a4724ced524a081c7020 /django/utils/termcolors.py
parentb3acdeee502e961065bfcdb7673d7cf91ab5b283 (diff)
Removed redundant termcolors.
Replaced MIGRATE_SUCCESS and MIGRATE_FAILURE with SUCCESS and ERROR.
Diffstat (limited to 'django/utils/termcolors.py')
-rw-r--r--django/utils/termcolors.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/django/utils/termcolors.py b/django/utils/termcolors.py
index 4924918e25..e36b3639d8 100644
--- a/django/utils/termcolors.py
+++ b/django/utils/termcolors.py
@@ -92,8 +92,6 @@ PALETTES = {
'HTTP_SERVER_ERROR': {},
'MIGRATE_HEADING': {},
'MIGRATE_LABEL': {},
- 'MIGRATE_SUCCESS': {},
- 'MIGRATE_FAILURE': {},
},
DARK_PALETTE: {
'ERROR': {'fg': 'red', 'opts': ('bold',)},
@@ -113,8 +111,6 @@ PALETTES = {
'HTTP_SERVER_ERROR': {'fg': 'magenta', 'opts': ('bold',)},
'MIGRATE_HEADING': {'fg': 'cyan', 'opts': ('bold',)},
'MIGRATE_LABEL': {'opts': ('bold',)},
- 'MIGRATE_SUCCESS': {'fg': 'green', 'opts': ('bold',)},
- 'MIGRATE_FAILURE': {'fg': 'red', 'opts': ('bold',)},
},
LIGHT_PALETTE: {
'ERROR': {'fg': 'red', 'opts': ('bold',)},
@@ -134,8 +130,6 @@ PALETTES = {
'HTTP_SERVER_ERROR': {'fg': 'magenta', 'opts': ('bold',)},
'MIGRATE_HEADING': {'fg': 'cyan', 'opts': ('bold',)},
'MIGRATE_LABEL': {'opts': ('bold',)},
- 'MIGRATE_SUCCESS': {'fg': 'green', 'opts': ('bold',)},
- 'MIGRATE_FAILURE': {'fg': 'red', 'opts': ('bold',)},
}
}
DEFAULT_PALETTE = DARK_PALETTE