summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-07-26 03:01:33 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-07-26 03:01:33 +0000
commit453a5bcd975e5f82f61121dac27af374cc011d1e (patch)
treee0cbc15cc61651812c6b0ae2cf66a959995831d3
parentcdc6415fdf21c1b5f40ab84ffdea7a4b128744c2 (diff)
Fix #7910 -- Added a missing import used when "django-admin.py compilemessages"
is run from a bad root directory. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8079 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/core/management/commands/compilemessages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/compilemessages.py b/django/core/management/commands/compilemessages.py
index 218c70b0f4..f0975ca6c1 100644
--- a/django/core/management/commands/compilemessages.py
+++ b/django/core/management/commands/compilemessages.py
@@ -1,7 +1,7 @@
import os
import sys
from optparse import make_option
-from django.core.management.base import BaseCommand
+from django.core.management.base import BaseCommand, CommandError
try:
set