From 2afbc6b7be749b0af98fea115dbe70f5263b9097 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 18 Feb 2016 08:44:53 -0500 Subject: [PATCH] [1.9.x] Fixed #26233 -- Fixed invalid reSt in models.Q docstring. Backport of 70d3f81ca4ea7e1e1310e13ce0a633d7f920d45b from master --- django/db/models/query_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/query_utils.py b/django/db/models/query_utils.py index b25b408230..195e8f4c40 100644 --- a/django/db/models/query_utils.py +++ b/django/db/models/query_utils.py @@ -45,7 +45,7 @@ class QueryWrapper(object): class Q(tree.Node): """ Encapsulates filters as objects that can then be combined logically (using - & and |). + `&` and `|`). """ # Connection types AND = 'AND'