From a72b8a224721775b31e2075c99165f1e3ca28092 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 13 Nov 2012 05:45:08 -0500 Subject: [PATCH] Fixed #19260 - Added a comment to tutorial 1. Thanks terwey for the suggestion. --- docs/intro/tutorial01.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index 1e2231d1e0..5712d557c6 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -52,7 +52,7 @@ code, then run the following command: django-admin.py startproject mysite -This will create a ``mysite`` directory in your current directory. If it didn't +This will create a ``mysite`` directory in your current directory. If it didn't work, see :doc:`Troubleshooting `. .. admonition:: Script name may differ in distribution packages @@ -666,6 +666,7 @@ Save these changes and start a new Python interactive shell by running >>> Poll.objects.get(pub_date__year=2012) + # Request an ID that doesn't exist, this will raise an exception. >>> Poll.objects.get(id=2) Traceback (most recent call last): ...