diff options
| author | Stefan Schneider <stefan.schneider@intergga.ch> | 2017-09-29 16:31:49 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-09-29 10:32:12 -0400 |
| commit | e8a82e82c148b135a8511ca4ca0f79dea4b7bc78 (patch) | |
| tree | 099d5c34f1b7025aa0349581f63b6bcf98576527 | |
| parent | 42847327d1277451ee7a61716f7b9f62f50ecbdc (diff) | |
[1.11.x] Fixed #28648 -- Corrected typo in docs/topics/db/queries.txt.
Backport of 293df73fb67a56c0417af8c39f808f64bc03cbeb from master
| -rw-r--r-- | docs/topics/db/queries.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt index 9f7f3584cd..4b9210f020 100644 --- a/docs/topics/db/queries.txt +++ b/docs/topics/db/queries.txt @@ -228,7 +228,7 @@ refinements together. For example:: ... ).exclude( ... pub_date__gte=datetime.date.today() ... ).filter( - ... pub_date__gte=datetime(2005, 1, 30) + ... pub_date__gte=datetime.date(2005, 1, 30) ... ) This takes the initial :class:`~django.db.models.query.QuerySet` of all entries |
