summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2015-03-11 17:08:57 +0000
committerPaul "LeoNerd" Evans <paul@matrix.org>2015-03-11 17:08:57 +0000
commit099e4b88d8053fbe5a661706a92a50e2c25f4dd6 (patch)
tree4b970847fae6525a9a77025fa412bb9773eb84d3 /synapse/storage/_base.py
parentAgain, underscore, not hyphen (diff)
downloadsynapse-099e4b88d8053fbe5a661706a92a50e2c25f4dd6.tar.xz
Add a description to storage layer's _execute_and_decode()
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r--synapse/storage/_base.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py
index 3725c9795d..a4e1d66e28 100644
--- a/synapse/storage/_base.py
+++ b/synapse/storage/_base.py
@@ -279,7 +279,8 @@ class SQLBaseStore(object):
 
         return self.runInteraction("_execute", interaction)
 
-    def _execute_and_decode(self, query, *args):
+    def _execute_and_decode(self, desc, query, *args):
+        # TODO: for now ignore desc
         return self._execute(self.cursor_to_dict, query, *args)
 
     # "Simple" SQL API methods that operate on a single table with no JOINs,