summaryrefslogtreecommitdiffstats
path: root/peekaboo/queuing.py
diff options
context:
space:
mode:
Diffstat (limited to 'peekaboo/queuing.py')
-rw-r--r--peekaboo/queuing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/peekaboo/queuing.py b/peekaboo/queuing.py
index c4cedd7..24b279b 100644
--- a/peekaboo/queuing.py
+++ b/peekaboo/queuing.py
@@ -294,7 +294,7 @@ class JobQueue:
# wait for workers to end
interval = 1
- for attempt in range(1, timeout / interval + 1):
+ for attempt in range(1, timeout // interval + 1):
still_running = []
for worker in self.workers:
if worker.running: