Fix s/iteriterms/itervalues

pull/3006/head
Erik Johnston 2018-03-22 11:42:16 +00:00
parent 9cf519769b
commit fde8e8f09f
1 changed files with 1 additions and 1 deletions

View File

@ -488,7 +488,7 @@ class StateResolutionHandler(object):
# which will be used as a cache key for future resolutions, but
# not get persisted.
state_group = None
new_state_event_ids = frozenset(new_state.iteritems())
new_state_event_ids = frozenset(new_state.itervalues())
for sg, events in state_groups_ids.iteritems():
if new_state_event_ids == frozenset(e_id for e_id in events):
state_group = sg