summary refs log tree commit diff
path: root/synapse/handlers/_base.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2014-08-28 13:51:50 +0100
committerMark Haines <mark.haines@matrix.org>2014-08-28 13:51:50 +0100
commit7acede1e42d2a1b8442bc4b30dba792b034caeed (patch)
tree262796202e149bd80f6b7dd4849f531d2d3931ca /synapse/handlers/_base.py
parentMerge backfill_ and backfill in federation handler (diff)
downloadsynapse-7acede1e42d2a1b8442bc4b30dba792b034caeed.tar.xz
Fix pyflakes warnings
Diffstat (limited to 'synapse/handlers/_base.py')
-rw-r--r--synapse/handlers/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/_base.py b/synapse/handlers/_base.py
index f141e92ce2..b37c8be964 100644
--- a/synapse/handlers/_base.py
+++ b/synapse/handlers/_base.py
@@ -35,7 +35,7 @@ class BaseRoomHandler(BaseHandler):
                            extra_users=[]):
         snapshot.fill_out_prev_events(event)
 
-        store_id = yield self.store.persist_event(event)
+        yield self.store.persist_event(event)
 
         destinations = set(extra_destinations)
         # Send a PDU to all hosts who have joined the room.