summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Bosch <hello@pb.io>2018-01-02 01:31:27 +0100
committerTim Graham <timograham@gmail.com>2018-01-01 19:31:27 -0500
commit248fa208cb2c7607fb7a464238fb8ebe62e6a54c (patch)
tree4690981ef883fa29626cb4b126e49f169bfa5e53
parentd065c92678f5d11a70b88e195c6357576eb3a2ef (diff)
Fixed typo in TemplateCommand argument help text.
-rw-r--r--django/core/management/templates.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/templates.py b/django/core/management/templates.py
index ccb2a04ea6..b132a81507 100644
--- a/django/core/management/templates.py
+++ b/django/core/management/templates.py
@@ -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.'
)