mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-25 03:39:28 -05:00
fix #3445
itervalues(d) calls d.itervalues() [PY2] and d.values() [PY3] but SortedDict only implements d.values()
This commit is contained in:
parent
82276a18d1
commit
79a8a347a6
1
changelog.d/3445.bugfix
Normal file
1
changelog.d/3445.bugfix
Normal file
@ -0,0 +1 @@
|
||||
do not use six.itervalues() on SortedDict()
|
@ -32,7 +32,7 @@ Events are replicated via a separate events stream.
|
||||
import logging
|
||||
from collections import namedtuple
|
||||
|
||||
from six import iteritems, itervalues
|
||||
from six import iteritems
|
||||
|
||||
from sortedcontainers import SortedDict
|
||||
|
||||
@ -117,7 +117,7 @@ class FederationRemoteSendQueue(object):
|
||||
|
||||
user_ids = set(
|
||||
user_id
|
||||
for uids in itervalues(self.presence_changed)
|
||||
for uids in self.presence_changed.values()
|
||||
for user_id in uids
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user