diff options
| author | Дилян Палаузов <dilyanpalauzov@users.noreply.github.com> | 2017-10-02 11:14:08 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-10-02 11:15:26 -0400 |
| commit | 5d9b736fd8e09e273fb5aeeca0da268ecea5f1fd (patch) | |
| tree | a40f60b91b9bea348ff85918a1c61bc6c0648c99 /django/db/models/sql | |
| parent | aba3467585a43236e9f8b97bffb5d77911b9caf6 (diff) | |
Fixed #28652 -- Fixed a few comments in django/db/models/*.
Diffstat (limited to 'django/db/models/sql')
| -rw-r--r-- | django/db/models/sql/compiler.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/db/models/sql/compiler.py b/django/db/models/sql/compiler.py index 14d44d3eef..b23404f21d 100644 --- a/django/db/models/sql/compiler.py +++ b/django/db/models/sql/compiler.py @@ -1052,8 +1052,7 @@ class SQLCompiler: raise if result_type == CURSOR: - # Caller didn't specify a result_type, so just give them back the - # cursor to process (and close). + # Give the caller the cursor to process and close. return cursor if result_type == SINGLE: try: |
