summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-03-20 16:03:25 +0000
committerErik Johnston <erik@matrix.org>2015-03-20 16:03:25 +0000
commit80cd08c190000c0b49e476b0a8283317edab9a8c (patch)
tree91c2bd508fde6087bad90ce3c79be3f20b40d21e /synapse/storage/_base.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into store_rearrangement (diff)
downloadsynapse-80cd08c190000c0b49e476b0a8283317edab9a8c.tar.xz
PEP8
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r--synapse/storage/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py
index 0ada6029fa..e53630a689 100644
--- a/synapse/storage/_base.py
+++ b/synapse/storage/_base.py
@@ -585,7 +585,7 @@ class SQLBaseStore(object):
             raise StoreError(500, "More than one row matched")
 
     def _simple_select_one_txn(self, txn, table, keyvalues, retcols,
-                           allow_none=False):
+                               allow_none=False):
         select_sql = "SELECT %s FROM %s WHERE %s ORDER BY rowid asc" % (
             ", ".join(retcols),
             table,