summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-01-01 21:54:33 +0000
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-01-01 21:54:33 +0000
commit9cce7a5ea8e3006069041e6a6bf7294f7e643396 (patch)
treec8baefcd52dfb6866fbf31e989c134838723dc46
parent1aaa0dd09865980743f940bc16ea1982aee49866 (diff)
Fixed #17486 -- Updated the welcome page of new projects to reflect the new structure created by startproject. Thanks aashu_dwivedi.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17323 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/views/debug.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/debug.py b/django/views/debug.py
index e150ca07a4..61817bb6b7 100644
--- a/django/views/debug.py
+++ b/django/views/debug.py
@@ -1083,7 +1083,7 @@ EMPTY_URLCONF_TEMPLATE = """
<p>Of course, you haven't actually done any work yet. Here's what to do next:</p>
<ul>
<li>If you plan to use a database, edit the <code>DATABASES</code> setting in <code>{{ project_name }}/settings.py</code>.</li>
- <li>Start your first app by running <code>python {{ project_name }}/manage.py startapp [appname]</code>.</li>
+ <li>Start your first app by running <code>python manage.py startapp [appname]</code>.</li>
</ul>
</div>