diff options
| author | Cesar Canassa <cesar.canassa@gmail.com> | 2015-07-14 11:31:02 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-07-14 07:36:17 -0400 |
| commit | 83b32422aade053515b5e485ef85228511908723 (patch) | |
| tree | 014da631b9788742741377e1db97e0874c227233 | |
| parent | 8c64c971e5a13c3216b18d41c6870224dbded64b (diff) | |
[1.8.x] Fixed #25123 -- Corrected makemessages --extension help text
Backport of 561c018d88203826cb9fd370e03a28e829871b75 from master
| -rw-r--r-- | django/core/management/commands/makemessages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/makemessages.py b/django/core/management/commands/makemessages.py index 0e0130eb41..022ad5f0a7 100644 --- a/django/core/management/commands/makemessages.py +++ b/django/core/management/commands/makemessages.py @@ -207,7 +207,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') |
