1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py
index befeb55b25..7fef8601e7 100644
--- a/synapse/storage/_base.py
+++ b/synapse/storage/_base.py
@@ -71,7 +71,7 @@ class SQLBaseStore(object):
return self._db_pool.runInteraction(interaction)
- def _execut_query(self, query, *args):
+ def _execute_and_decode(self, query, *args):
return self._execute(self.cursor_to_dict, *args)
# "Simple" SQL API methods that operate on a single table with no JOINs,
|