From 561c018d88203826cb9fd370e03a28e829871b75 Mon Sep 17 00:00:00 2001 From: Cesar Canassa Date: Tue, 14 Jul 2015 11:31:02 +0200 Subject: [PATCH] Fixed #25123 -- Corrected makemessages --extension help text --- django/core/management/commands/makemessages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/management/commands/makemessages.py b/django/core/management/commands/makemessages.py index 0f7daf24cf..37e1b8e0da 100644 --- a/django/core/management/commands/makemessages.py +++ b/django/core/management/commands/makemessages.py @@ -213,7 +213,7 @@ class Command(BaseCommand): parser.add_argument('--all', '-a', action='store_true', dest='all', default=False, help='Updates the message files for all existing locales.') parser.add_argument('--extension', '-e', dest='extensions', - help='The file extension(s) to examine (default: "html,txt", or "js" ' + help='The file extension(s) to examine (default: "html,txt,py", or "js" ' 'if the domain is "djangojs"). Separate multiple extensions with ' 'commas, or use -e multiple times.', action='append')