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:39 -0500
commitde29c1f9501dec733b623013bf1f7b475d0e243b (patch)
treeaa1638de60896bb402d70829cd87f65246949c51
parent8f67eeaef44ae8f1fcb51588a65f7818e4d7a967 (diff)
[2.0.x] Fixed typo in TemplateCommand argument help text.
Backport of 248fa208cb2c7607fb7a464238fb8ebe62e6a54c from master
-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 a89a54fa62..3fcd25f951 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.'
)