summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/intro/overview.txt2
-rw-r--r--docs/intro/tutorial01.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/intro/overview.txt b/docs/intro/overview.txt
index 980a079a12..d3059e85e3 100644
--- a/docs/intro/overview.txt
+++ b/docs/intro/overview.txt
@@ -102,7 +102,7 @@ necessary:
>>> Reporter.objects.get(id=2)
Traceback (most recent call last):
...
- DoesNotExist: Reporter matching query does not exist. Lookup parameters were {'id': 2}
+ DoesNotExist: Reporter matching query does not exist.
# Create an article.
>>> from datetime import date
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.