#20256: Incorrect text in startproject command line help
--------------------------------------------+--------------------
     Reporter:  anonymous                   |      Owner:  nobody
         Type:  Bug                         |     Status:  new
    Component:  Core (Management commands)  |    Version:  master
     Severity:  Normal                      |   Keywords:
 Triage Stage:  Unreviewed                  |  Has patch:  1
Easy pickings:  1                           |      UI/UX:  0
--------------------------------------------+--------------------
 The command line help for startproject `django-admin.py startproject
 --help` is

 {{{
   --template=TEMPLATE   The dotted import path to load the template from.
 }}}

 The directory need not to be ''importable'' and should not be ''dotted''
 but a path with "/".

 {{{
 --- a/django/core/management/templates.py
 +++ b/django/core/management/templates.py
 @@ -43,7 +43,7 @@ class TemplateCommand(BaseCommand):
      option_list = BaseCommand.option_list + (
          make_option('--template',
                      action='store', dest='template',
 -                    help='The dotted import path to load the template
 from.'),
 +                    help='The path or url to load the template from.'),
          make_option('--extension', '-e', dest='extensions',
                      action='append', default=['py'],
                      help='The file extension(s) to render (default:
 "py"). '
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/20256>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to