1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Fixed typo in TemplateCommand argument help text.

This commit is contained in:
Philipp Bosch 2018-01-02 01:31:27 +01:00 committed by Tim Graham
parent d065c92678
commit 248fa208cb

View File

@ -59,7 +59,7 @@ class TemplateCommand(BaseCommand):
parser.add_argument(
'--name', '-n', dest='files',
action='append', default=[],
help='The file name(s) to render. Separate multiple extensions '
help='The file name(s) to render. Separate multiple file names '
'with commas, or use -n multiple times.'
)