From 248fa208cb2c7607fb7a464238fb8ebe62e6a54c Mon Sep 17 00:00:00 2001 From: Philipp Bosch Date: Tue, 2 Jan 2018 01:31:27 +0100 Subject: [PATCH] Fixed typo in TemplateCommand argument help text. --- 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 ccb2a04ea68..b132a815075 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.' )