diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-07-26 03:01:33 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-07-26 03:01:33 +0000 |
| commit | 453a5bcd975e5f82f61121dac27af374cc011d1e (patch) | |
| tree | e0cbc15cc61651812c6b0ae2cf66a959995831d3 | |
| parent | cdc6415fdf21c1b5f40ab84ffdea7a4b128744c2 (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.py | 2 |
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 |
