summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/management/templates.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/management/templates.py b/django/core/management/templates.py
index 1d26e97961..5e7e5741b7 100644
--- a/django/core/management/templates.py
+++ b/django/core/management/templates.py
@@ -45,12 +45,12 @@ class TemplateCommand(BaseCommand):
help='The dotted import path to load the template from.'),
make_option('--extension', '-e', dest='extensions',
action='append', default=['py'],
- help='The file extension(s) to render (default: "py") '
+ help='The file extension(s) to render (default: "py"). '
'Separate multiple extensions with commas, or use '
'-e multiple times.'),
make_option('--name', '-n', dest='files',
action='append', default=[],
- help='The file name(s) to render '
+ help='The file name(s) to render. '
'Separate multiple extensions with commas, or use '
'-n multiple times.')
)