diff options
| author | Barry Warsaw | 2008-09-29 21:48:19 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-09-29 21:48:19 -0400 |
| commit | af67970b37a00941d532de574d0cd9c05b207d69 (patch) | |
| tree | d1af18d6361ea5f22cc768e9c306f22023b6db56 /mailman/queue/outgoing.py | |
| parent | 20a97a4163774212ad9f16c5a2e3abcbf3ecf918 (diff) | |
| download | mailman-af67970b37a00941d532de574d0cd9c05b207d69.tar.gz mailman-af67970b37a00941d532de574d0cd9c05b207d69.tar.zst mailman-af67970b37a00941d532de574d0cd9c05b207d69.zip | |
Diffstat (limited to 'mailman/queue/outgoing.py')
| -rw-r--r-- | mailman/queue/outgoing.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mailman/queue/outgoing.py b/mailman/queue/outgoing.py index 624368930..3ab67eaad 100644 --- a/mailman/queue/outgoing.py +++ b/mailman/queue/outgoing.py @@ -32,8 +32,8 @@ from mailman.core import errors from mailman.queue import Runner, Switchboard from mailman.queue.bounce import BounceMixin -# This controls how often _doperiodic() will try to deal with deferred -# permanent failures. It is a count of calls to _doperiodic() +# This controls how often _do_periodic() will try to deal with deferred +# permanent failures. It is a count of calls to _do_periodic() DEAL_WITH_PERMFAILURES_EVERY = 10 log = logging.getLogger('mailman.error') @@ -123,8 +123,8 @@ class OutgoingRunner(Runner, BounceMixin): # We've successfully completed handling of this message return False - _doperiodic = BounceMixin._doperiodic + _do_periodic = BounceMixin._do_periodic - def _cleanup(self): - BounceMixin._cleanup(self) - Runner._cleanup(self) + def _clean_up(self): + BounceMixin._clean_up(self) + Runner._clean_up(self) |
