Skip to content

Commit 9851294

Browse files
mraerinosylvinus
authored andcommitted
Fix Python 3 incompatibility (#188)
1 parent 9d64c41 commit 9851294

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mrq/basetasks/cleaning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def run(self, params):
241241

242242
# Only clean queues older than N days
243243
time_threshold = time.time() - max_age
244-
for queue, time_last_used in known_queues.iteritems():
244+
for queue, time_last_used in known_queues.items():
245245
if queue in queues_from_config:
246246
continue
247247
if time_last_used < time_threshold:

0 commit comments

Comments
 (0)