summaryrefslogtreecommitdiff
path: root/docs/tutorial01.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-16 02:00:23 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-16 02:00:23 +0000
commit464e84257d1e61468bc6ddd3cc5ed0343ec6b047 (patch)
tree6e929fd88d96be909e3ffc94d13ae2def574ad61 /docs/tutorial01.txt
parenta469d821a12fc337d534cb9d499942296c1bd126 (diff)
Changed 'django-admin.py startapp' application template to use views.py instead of views package, for simplicity. Updated tutorial to reflect the change.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1258 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial01.txt')
-rw-r--r--docs/tutorial01.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt
index 761b73466d..edf59b5b54 100644
--- a/docs/tutorial01.txt
+++ b/docs/tutorial01.txt
@@ -131,8 +131,7 @@ That'll create a directory structure like this::
models/
__init__.py
polls.py
- views/
- __init__.py
+ views.py
This directory structure will house the poll application.