summary refs log tree commit diff
path: root/synapse/storage/events.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-09-05 14:57:14 +0100
committerErik Johnston <erik@matrix.org>2016-09-05 14:57:14 +0100
commit70332a12dd0a2ea01e1f8f835dcb5ca15526a5f3 (patch)
tree49d53c94687b23c3631062668f37c9ce36973a39 /synapse/storage/events.py
parentComment about sqlite and WITH RECURSIVE (diff)
downloadsynapse-70332a12dd0a2ea01e1f8f835dcb5ca15526a5f3.tar.xz
Take value in a better way
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r--synapse/storage/events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py
index bec35ea68d..ed182c8d11 100644
--- a/synapse/storage/events.py
+++ b/synapse/storage/events.py
@@ -1616,7 +1616,7 @@ class EventsStore(SQLBaseStore):
             curr_state = self._get_state_groups_from_groups_txn(
                 txn, [new_state_edge], types=None
             )
-            curr_state = curr_state.values()[0]
+            curr_state = curr_state[new_state_edge]
 
             self._simple_delete_txn(
                 txn,