Fixed missing periods in django-admin help for startproject from [17432]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17538 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2012-02-17 16:51:22 +00:00
parent 9d7b5558ee
commit 7ecb6813c9
1 changed files with 2 additions and 2 deletions

View File

@ -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.')
)