summaryrefslogtreecommitdiff
path: root/tests/select_for_update
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-18 10:02:43 +0100
committerAlasdair Nicol <alasdair@memset.com>2013-10-18 10:07:39 +0100
commita800036981c6fea8eb3dac22467965c71af05d29 (patch)
treec872f8a78d26f1de133d415fef922013dafe878a /tests/select_for_update
parent65750b83523870851008e804364121f8c458fc2d (diff)
Fixed #21287 -- Fixed E123 pep8 warnings
Diffstat (limited to 'tests/select_for_update')
-rw-r--r--tests/select_for_update/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/select_for_update/tests.py b/tests/select_for_update/tests.py
index 24c9079040..7e06cc809a 100644
--- a/tests/select_for_update/tests.py
+++ b/tests/select_for_update/tests.py
@@ -68,7 +68,7 @@ class SelectForUpdateTests(TransactionTestCase):
sql = 'SELECT * FROM %(db_table)s %(for_update)s;' % {
'db_table': Person._meta.db_table,
'for_update': self.new_connection.ops.for_update_sql(),
- }
+ }
self.cursor.execute(sql, ())
self.cursor.fetchone()