summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-04-16 08:35:17 -0400
committerTim Graham <timograham@gmail.com>2014-04-16 08:36:02 -0400
commiteefad142dee466c1ead6038fbeec75479b1afead (patch)
tree0c6944884f0f7a4daba1955503d8543d3c092c6d /docs/intro/tutorial01.txt
parentae5b6627965bc8342ad533e7c4dcb5bde3bcedc8 (diff)
Fixed #22453 -- Corrected DoesNotExist message in docs.
Thanks Eugenio Cano-Manuel.
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 4fb5d1b9f0..3211bb873f 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -777,7 +777,7 @@ Save these changes and start a new Python interactive shell by running
>>> Question.objects.get(id=2)
Traceback (most recent call last):
...
- DoesNotExist: Question matching query does not exist. Lookup parameters were {'id': 2}
+ DoesNotExist: Question matching query does not exist.
# Lookup by a primary key is the most common case, so Django provides a
# shortcut for primary-key exact lookups.