summaryrefslogtreecommitdiff
path: root/django/utils
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2006-07-21 20:39:17 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2006-07-21 20:39:17 +0000
commita926046ba633ac38d3306b6bc10677a670929786 (patch)
tree4faf4d60a6b42145b2e753b81a6f6e9029c43b5f /django/utils
parent5c5ca53b703dd81b693ddf43c5f51590002dd78b (diff)
Second half of little cleanup tweaks suggested by pyflakes.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3414 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/utils')
-rw-r--r--django/utils/termcolors.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/utils/termcolors.py b/django/utils/termcolors.py
index 3ce1d5bb6b..17a600f899 100644
--- a/django/utils/termcolors.py
+++ b/django/utils/termcolors.py
@@ -2,8 +2,6 @@
termcolors.py
"""
-import types
-
color_names = ('black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white')
foreground = dict([(color_names[x], '3%s' % x) for x in range(8)])
background = dict([(color_names[x], '4%s' % x) for x in range(8)])