Added missing newline to makemessages output. Thanks Florian Apolloner for report and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17631 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Carl Meyer 2012-03-02 20:34:46 +00:00
parent 2ade1e916f
commit 89b57a7c77
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ def make_messages(locale=None, domain='django', verbosity=1, all=False,
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)