diff options
author | Erik Johnston <erik@matrix.org> | 2014-11-10 18:24:43 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-11-10 18:25:42 +0000 |
commit | a8e565eca8cbfcedbdfd812c98a6545c2fc31afd (patch) | |
tree | d55fba621e45804cd27829415b0e588b7e9fa51c /synapse/storage/_base.py | |
parent | Fix rest.test_events. Convert to use SQLiteMemoryDbPool (diff) | |
download | synapse-a8e565eca8cbfcedbdfd812c98a6545c2fc31afd.tar.xz |
Add an EventValidator. Fix bugs in auth ++ storage
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r-- | synapse/storage/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py index 2df64bdfeb..a1ee0318f6 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py @@ -212,7 +212,7 @@ class SQLBaseStore(object): retcol : string giving the name of the column to return """ return self.runInteraction( - "_simple_select_one_onecol_txn", + "_simple_select_one_onecol", self._simple_select_one_onecol_txn, table, keyvalues, retcol, allow_none=allow_none, ) |