From de29c1f9501dec733b623013bf1f7b475d0e243b Mon Sep 17 00:00:00 2001 From: Philipp Bosch Date: Tue, 2 Jan 2018 01:31:27 +0100 Subject: [PATCH] [2.0.x] Fixed typo in TemplateCommand argument help text. Backport of 248fa208cb2c7607fb7a464238fb8ebe62e6a54c from master --- django/core/management/templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.' )