diff options
Diffstat (limited to 'mailman/bin/qrunner.py')
| -rw-r--r-- | mailman/bin/qrunner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mailman/bin/qrunner.py b/mailman/bin/qrunner.py index 33c17f91d..422809fa3 100644 --- a/mailman/bin/qrunner.py +++ b/mailman/bin/qrunner.py @@ -149,9 +149,9 @@ def make_qrunner(name, slice, range, once=False): raise qrclass = getattr(sys.modules[modulename], classname) if once: - # Subclass to hack in the setting of the stop flag in _doperiodic() + # Subclass to hack in the setting of the stop flag in _do_periodic() class Once(qrclass): - def _doperiodic(self): + def _do_periodic(self): self.stop() qrunner = Once(slice, range) else: |
