summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial02.txt
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2011-10-13 11:21:42 +0000
committerRamiro Morales <cramm0@gmail.com>2011-10-13 11:21:42 +0000
commit639400d52fe4c364d91ec67cdb58a3174d33e8ad (patch)
tree3774c36443c912a13ab50b819f9d710d086a59c9 /docs/intro/tutorial02.txt
parentd544110c52377014f08de454d08679caf9c8ab1c (diff)
Added note to tutorial part #2 about possible mismatch with the Django version being used regarding changes in location of django.conf.urls[.defaults] symbols. Thansk Carl for the suggestion.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16970 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/intro/tutorial02.txt')
-rw-r--r--docs/intro/tutorial02.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index 589e11f617..e0d167652b 100644
--- a/docs/intro/tutorial02.txt
+++ b/docs/intro/tutorial02.txt
@@ -77,6 +77,19 @@ http://127.0.0.1:8000/admin/. You should see the admin's login screen:
.. image:: _images/admin01.png
:alt: Django admin login screen
+.. admonition:: Doesn't match what you see?
+
+ If at this point, instead of the above login page, you get an error
+ page reporting something like::
+
+ ImportError at /admin/
+ cannot import name patterns
+ ...
+
+ then you're probably using a version of Django that doesn't match this
+ tutorial version. You'll want to either switch to the older tutorial or the
+ newer Django version.
+
Enter the admin site
====================