From de8aa3a9a9098af35d5b56442c39dd2ed56b3299 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Wed, 8 May 2013 09:55:40 +0200 Subject: [PATCH] Fixed #20256 -- Corrected startproject --template help text Thanks n0nam3 for the patch. --- django/core/management/templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/management/templates.py b/django/core/management/templates.py index 0f453991093..893e5c95af2 100644 --- 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"). '