1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

[1.7.x] Fixed flake8 warning.

Backport of f9f9f3ad60 from master
This commit is contained in:
Tim Graham 2014-08-07 10:11:15 -04:00
parent a7336cdcbe
commit 4c56b6f820

View File

@ -346,7 +346,7 @@ class QuerySet(object):
if self.query.can_filter():
clone = clone.order_by()
if (not clone.query.select_for_update or
connections[self.db].features.supports_select_for_update_with_limit):
connections[self.db].features.supports_select_for_update_with_limit):
clone = clone[:MAX_GET_RESULTS + 1]
num = len(clone)
if num == 1: