diff options
| author | Tim Graham <timograham@gmail.com> | 2015-11-17 18:33:03 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-11-18 10:26:39 -0500 |
| commit | c7adfe941bb1e5243c9d160bae33fa88764ce073 (patch) | |
| tree | 812aa2c4fafa5fb11a05a4724ced524a081c7020 /django/utils/termcolors.py | |
| parent | b3acdeee502e961065bfcdb7673d7cf91ab5b283 (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.py | 6 |
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 |
