Rename _execute_query

This commit is contained in:
Erik Johnston 2014-08-14 16:58:51 +01:00
parent 937c175029
commit 2529f2bc01
4 changed files with 4 additions and 4 deletions

View file

@ -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,