Skip to content

Commit

Permalink
Added missing newline to makemessages output. Thanks Florian Apollone…
Browse files Browse the repository at this point in the history
…r for report and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17631 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
carljm committed Mar 2, 2012
1 parent 2ade1e9 commit 89b57a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/core/management/commands/makemessages.py
Expand Up @@ -324,7 +324,7 @@ def make_messages(locale=None, domain='django', verbosity=1, all=False,


for locale in locales: for locale in locales:
if verbosity > 0: if verbosity > 0:
stdout.write("processing language %s" % locale) stdout.write("processing language %s\n" % locale)
basedir = os.path.join(localedir, locale, 'LC_MESSAGES') basedir = os.path.join(localedir, locale, 'LC_MESSAGES')
if not os.path.isdir(basedir): if not os.path.isdir(basedir):
os.makedirs(basedir) os.makedirs(basedir)
Expand Down

0 comments on commit 89b57a7

Please sign in to comment.