forked from MirrorHub/synapse
PEP8
This commit is contained in:
parent
81570abfb2
commit
4d49e0bdfd
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ class RoomListHandler(BaseHandler):
|
||||||
chunk = []
|
chunk = []
|
||||||
if limit and not search_filter:
|
if limit and not search_filter:
|
||||||
step = limit + 1
|
step = limit + 1
|
||||||
for i in xrange(0 , len(rooms_to_scan), step):
|
for i in xrange(0, len(rooms_to_scan), step):
|
||||||
# We iterate here because the vast majority of cases we'll stop
|
# We iterate here because the vast majority of cases we'll stop
|
||||||
# at first iteration, but occaisonally _generate_room_entry
|
# at first iteration, but occaisonally _generate_room_entry
|
||||||
# won't append to the chunk and so we need to loop again.
|
# won't append to the chunk and so we need to loop again.
|
||||||
|
|
Loading…
Reference in a new issue