Skip to content

Commit

Permalink
Fix Python 3 incompatibility (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
mraerino authored and sylvinus committed Dec 7, 2017
1 parent 9d64c41 commit 9851294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mrq/basetasks/cleaning.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def run(self, params):

# Only clean queues older than N days
time_threshold = time.time() - max_age
for queue, time_last_used in known_queues.iteritems():
for queue, time_last_used in known_queues.items():
if queue in queues_from_config:
continue
if time_last_used < time_threshold:
Expand Down

0 comments on commit 9851294

Please sign in to comment.