summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-14 16:58:51 +0100
committerErik Johnston <erik@matrix.org>2014-08-14 16:58:51 +0100
commit2529f2bc01781314ecdedd69e272c737ba1a71f5 (patch)
tree04949e3057480d6fd972d7d25fed6cc7f6914eea /synapse/storage/_base.py
parentFix up RoomMemberStore to work with the new schema. (diff)
downloadsynapse-2529f2bc01781314ecdedd69e272c737ba1a71f5.tar.xz
Rename _execute_query
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 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,