summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2013-08-09 17:39:07 +0100
committerAndrew Godwin <andrew@aeracode.org>2013-08-09 17:39:07 +0100
commitb3cec920a2a7d547944823c539a7ebd99b3af23a (patch)
tree36280c27f483ee80fe6d2d6113d14d3da02a3bf2
parent9f736294205486443f047e93f8ca53b5b00ac1d3 (diff)
Remove other color_style override
-rw-r--r--django/core/management/commands/makemigrations.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/core/management/commands/makemigrations.py b/django/core/management/commands/makemigrations.py
index 0f04b2fc1f..e1a6d5e319 100644
--- a/django/core/management/commands/makemigrations.py
+++ b/django/core/management/commands/makemigrations.py
@@ -3,7 +3,6 @@ import os
from optparse import make_option
from django.core.management.base import BaseCommand
-from django.core.management.color import color_style
from django.core.exceptions import ImproperlyConfigured
from django.db import connections
from django.db.migrations.loader import MigrationLoader
@@ -26,7 +25,6 @@ class Command(BaseCommand):
self.verbosity = int(options.get('verbosity'))
self.interactive = options.get('interactive')
- self.style = color_style()
# Make sure the app they asked for exists
app_labels = set(app_labels)