Author: carljm
Date: 2012-03-02 12:34:46 -0800 (Fri, 02 Mar 2012)
New Revision: 17631

Modified:
   django/trunk/django/core/management/commands/makemessages.py
Log:
Added missing newline to makemessages output. Thanks Florian Apolloner for 
report and patch.

Modified: django/trunk/django/core/management/commands/makemessages.py
===================================================================
--- django/trunk/django/core/management/commands/makemessages.py        
2012-03-02 17:16:52 UTC (rev 17630)
+++ django/trunk/django/core/management/commands/makemessages.py        
2012-03-02 20:34:46 UTC (rev 17631)
@@ -324,7 +324,7 @@
 
     for locale in locales:
         if verbosity > 0:
-            stdout.write("processing language %s" % locale)
+            stdout.write("processing language %s\n" % locale)
         basedir = os.path.join(localedir, locale, 'LC_MESSAGES')
         if not os.path.isdir(basedir):
             os.makedirs(basedir)

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to