diff options
| author | risicle <github@humanleg.org.uk> | 2015-07-28 15:09:43 +0100 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2015-07-28 10:49:26 -0400 |
| commit | 5d60d2b4576429d7057fe9e64f4107033581b627 (patch) | |
| tree | 766f682b2722cf00cec758a472f44e16a47c8a73 | |
| parent | ae32f324981dd64d7c04fcbed9d99356914a61de (diff) | |
Adjusted SQLCompiler.get_order_by()'s docstring return value.
| -rw-r--r-- | django/db/models/sql/compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/compiler.py b/django/db/models/sql/compiler.py index b31ab8d875..f27cd87d5f 100644 --- a/django/db/models/sql/compiler.py +++ b/django/db/models/sql/compiler.py @@ -230,7 +230,7 @@ class SQLCompiler(object): def get_order_by(self): """ - Returns a list of 2-tuples of form (expr, (sql, params)) for the + Returns a list of 2-tuples of form (expr, (sql, params, is_ref)) for the ORDER BY clause. The order_by clause can alter the select clause (for example it |
