diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-01-23 11:55:12 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-01-23 11:55:12 +0000 |
commit | 1c06c48ce2db3c6355e29de1533aebf36bc3775b (patch) | |
tree | a114a45bcf1a1f9184344381548fd58008013ece /synapse/handlers | |
parent | Replace hs.parse_userid with UserID.from_string (diff) | |
download | synapse-1c06c48ce2db3c6355e29de1533aebf36bc3775b.tar.xz |
Replace hs.parse_roomid with RoomID.from_string
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/room.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index 0242288c4e..edb96cec83 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -246,8 +246,6 @@ class RoomMemberHandler(BaseHandler): @defer.inlineCallbacks def get_room_members(self, room_id): - hs = self.hs - users = yield self.store.get_users_in_room(room_id) defer.returnValue([UserID.from_string(u) for u in users]) |