Ticket #20256: incorrect_text.diff

File incorrect_text.diff, 737 bytes (added by n0nam3, 11 years ago)

patch for ticket fix

  • django/core/management/templates.py

    diff --git a/django/core/management/templates.py b/django/core/management/templates.py
    index 0f45399..893e5c9 100644
    a b class TemplateCommand(BaseCommand):  
    4343    option_list = BaseCommand.option_list + (
    4444        make_option('--template',
    4545                    action='store', dest='template',
    46                     help='The dotted import path to load the template from.'),
     46                    help='The path or URL to load the template from.'),
    4747        make_option('--extension', '-e', dest='extensions',
    4848                    action='append', default=['py'],
    4949                    help='The file extension(s) to render (default: "py"). '
Back to Top