summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-08-13 03:45:43 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-08-13 03:45:43 +0000
commitf13e70fae54e6d847f1600152701ef6eb04ffb82 (patch)
tree6c38afb7b6b0569c36905e878b296ae2759863c5
parent0f000b7ae5b257451fbe3d266fba902ee27ba54e (diff)
downloaddjango-f13e70fae54e6d847f1600152701ef6eb04ffb82.tar.gz
Small formatting change to compile-messages.py
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3577 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 5f653df95d..44a84de379 100755
--- a/django/bin/compile-messages.py
+++ b/django/bin/compile-messages.py
@@ -14,7 +14,7 @@ def compile_messages():
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):
+ for dirpath, dirnames, filenames in os.walk(basedir):
for f in filenames:
if f.endswith('.po'):
sys.stderr.write('processing file %s in %s\n' % (f, dirpath))