diff --git a/django/core/management/templates.py b/django/core/management/templates.py
index 0f45399..893e5c9 100644
|
a
|
b
|
class TemplateCommand(BaseCommand):
|
| 43 | 43 | option_list = BaseCommand.option_list + ( |
| 44 | 44 | make_option('--template', |
| 45 | 45 | 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.'), |
| 47 | 47 | make_option('--extension', '-e', dest='extensions', |
| 48 | 48 | action='append', default=['py'], |
| 49 | 49 | help='The file extension(s) to render (default: "py"). ' |