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:31:49 -0400 |
| commit | 293df73fb67a56c0417af8c39f808f64bc03cbeb (patch) | |
| tree | 293799cc3503ff78d9d2f06265e42a71957cc50c | |
| parent | 8d40eb0e897832254a22433d2daaed01f15f2f06 (diff) | |
Fixed #28648 -- Corrected typo in docs/topics/db/queries.txt.
| -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 fcf3a183bb..7bc090f5e7 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 |
