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:
parent
9d7b5558ee
commit
7ecb6813c9
|
@ -45,12 +45,12 @@ class TemplateCommand(BaseCommand):
|
||||||
help='The dotted import path to load the template from.'),
|
help='The dotted import path to load the template from.'),
|
||||||
make_option('--extension', '-e', dest='extensions',
|
make_option('--extension', '-e', dest='extensions',
|
||||||
action='append', default=['py'],
|
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 '
|
'Separate multiple extensions with commas, or use '
|
||||||
'-e multiple times.'),
|
'-e multiple times.'),
|
||||||
make_option('--name', '-n', dest='files',
|
make_option('--name', '-n', dest='files',
|
||||||
action='append', default=[],
|
action='append', default=[],
|
||||||
help='The file name(s) to render '
|
help='The file name(s) to render. '
|
||||||
'Separate multiple extensions with commas, or use '
|
'Separate multiple extensions with commas, or use '
|
||||||
'-n multiple times.')
|
'-n multiple times.')
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue