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

@ -141,6 +141,6 @@ class RoomMemberStore(SQLBaseStore):
"WHERE %s "
) % (where_clause,)
rows = yield self._execute_query(sql, where_values)
rows = yield self._execute_and_decode(sql, where_values)
results = [self._parse_event_from_row(r) for r in rows]
defer.returnValue(results)