Skip to content

Commit 2b8f364

Browse files
committed
Merge branch 'master' of github.com:pricingassistant/mrq into 0.9.x
* 'master' of github.com:pricingassistant/mrq: Fix Python 3 incompatibility (#188)
2 parents 1980826 + 9851294 commit 2b8f364

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
@@ -116,7 +116,7 @@ def run(self, params):
116116

117117
# Only clean queues older than N days
118118
time_threshold = time.time() - max_age
119-
for queue, time_last_used in known_queues.iteritems():
119+
for queue, time_last_used in known_queues.items():
120120
if queue in queues_from_config:
121121
continue
122122
if time_last_used < time_threshold:

0 commit comments

Comments
 (0)