diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2012-02-17 16:51:22 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2012-02-17 16:51:22 +0000 |
| commit | 7ecb6813c97ffd480f6aab005353f059c94a3d65 (patch) | |
| tree | 85797b0dafd52ec287b308f9e2e11378611ba2dc | |
| parent | 9d7b5558ee21bd047c1b3845d4af7540000476bf (diff) | |
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
| -rw-r--r-- | django/core/management/templates.py | 4 |
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.') ) |
