diff options
Diffstat (limited to 'Mailman/Queue/Runner.py')
| -rw-r--r-- | Mailman/Queue/Runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Queue/Runner.py b/Mailman/Queue/Runner.py index 9fb5434cc..958e11e6c 100644 --- a/Mailman/Queue/Runner.py +++ b/Mailman/Queue/Runner.py @@ -229,9 +229,9 @@ class Runner: based on this value. By default, we only snooze if there was nothing to do last time around. """ - if filecnt or self.SLEEPTIME <= 0: + if filecnt or float(self.SLEEPTIME) <= 0: return - time.sleep(self.SLEEPTIME) + time.sleep(float(self.SLEEPTIME)) def _shortcircuit(self): """Return a true value if the individual file processing loop should |
