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:38:04 -0400
commit20dbbc5fa25bb4dd8d583ab16c7fc761b3e27ec3 (patch)
tree18197ad836c70151a87cc20ccc2c92dc4ff1a6a2 /docs/intro/tutorial01.txt
parent9510e96da647a5cc2ba6bab381f0df86a3a7db8b (diff)
[1.6.x] Fixed #22453 -- Corrected DoesNotExist message in docs.
Thanks Eugenio Cano-Manuel. Backport of eefad142dee466c1ead6038fbeec75479b1afead from master
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 319e77aca7..309b0bc39f 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -673,7 +673,7 @@ Save these changes and start a new Python interactive shell by running
>>> Poll.objects.get(id=2)
Traceback (most recent call last):
...
- DoesNotExist: Poll matching query does not exist. Lookup parameters were {'id': 2}
+ DoesNotExist: Poll 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.