diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py
index 0ada6029fa67f8fbbbee731a01e4536b5c84e34a..e53630a68928685d5e593bae15a9ef39d6a0d949 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,