summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-04-12 19:22:02 -0400
committerTim Graham <timograham@gmail.com>2013-04-12 19:22:02 -0400
commitaad5661c6c44ac58c4218fcac8d433ae2293dfce (patch)
treeec532448a8078a17e9a8a33cc1859f6af4850f04 /docs/intro/tutorial01.txt
parent6d968317698b99115be2652a9e2e41adc3a28e79 (diff)
Fixed #20247 - Added some missing paths in the tutorial.
Thanks gsavix for the suggestion and patch.
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 65cfb95c34..7f69945300 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -262,7 +262,7 @@ that, run the following command:
The :djadmin:`syncdb` command looks at the :setting:`INSTALLED_APPS` setting
and creates any necessary database tables according to the database settings
-in your :file:`mysqlite/settings.py` file. You'll see a message for each
+in your :file:`mysite/settings.py` file. You'll see a message for each
database table it creates, and you'll get a prompt asking you if you'd like to
create a superuser account for the authentication system. Go ahead and do
that.
@@ -525,7 +525,7 @@ API Django gives you. To invoke the Python shell, use this command:
We're using this instead of simply typing "python", because :file:`manage.py`
sets the ``DJANGO_SETTINGS_MODULE`` environment variable, which gives Django
-the Python import path to your :file:`settings.py` file.
+the Python import path to your :file:`mysite/settings.py` file.
.. admonition:: Bypassing manage.py