From 639400d52fe4c364d91ec67cdb58a3174d33e8ad Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Thu, 13 Oct 2011 11:21:42 +0000 Subject: [PATCH] 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 --- docs/intro/tutorial02.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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 ====================