summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-08-16 04:27:42 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-08-16 04:27:42 +0000
commit7c79f2affa978c2b3a9f523eed3793fd872f686c (patch)
tree96972375996049f07f235bdcdfb32e2de21eea14
parentf98f702f2bca9dc460d4ee50b66f808d7efca43d (diff)
downloaddjango-7c79f2affa978c2b3a9f523eed3793fd872f686c.tar.gz
Small error-message formatting change to compile-messages.py
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3590 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rwxr-xr-xdjango/bin/compile-messages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/bin/compile-messages.py b/django/bin/compile-messages.py
index 44a84de379..66fdfd3e8b 100755
--- a/django/bin/compile-messages.py
+++ b/django/bin/compile-messages.py
@@ -11,7 +11,7 @@ def compile_messages():
elif os.path.isdir('locale'):
basedir = os.path.abspath('locale')
else:
- print "this script should be run from the django svn tree or your project or app tree"
+ print "This script should be run from the Django SVN tree or your project or app tree."
sys.exit(1)
for dirpath, dirnames, filenames in os.walk(basedir):