summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorAnssi Kääriäinen <akaariai@gmail.com>2012-04-20 11:09:32 +0000
committerAnssi Kääriäinen <akaariai@gmail.com>2012-04-20 11:09:32 +0000
commitd5b93d3281fe93cbef5de84a52001f64dbd839bd (patch)
tree3d445402e99f79f717602a6bc63561cd23ccdee8 /docs/intro/tutorial01.txt
parenta901654a96dd4287ab3a700aff86bcac4b49f32a (diff)
Fixed #10494 -- Added kwargs to QuerySet.get() error message in the case no objects were found.
Thanks brondsem for the report, Szymon Pyzalski for the patch and oinopion for review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17917 bcc190cf-cafb-0310-a4f2-bffc1f526a37
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 7575afd454..d8258c00f8 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -664,7 +664,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.
+ DoesNotExist: Poll matching query does not exist. Lookup parameters were {'id': 2}
# Lookup by a primary key is the most common case, so Django provides a
# shortcut for primary-key exact lookups.