diff options
| -rw-r--r-- | Mailman/Bouncer.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/Bouncer.py b/Mailman/Bouncer.py index f4ab38dd2..e24dafd02 100644 --- a/Mailman/Bouncer.py +++ b/Mailman/Bouncer.py @@ -48,10 +48,10 @@ class _BounceInfo: self.reset(score, date, noticesleft) def reset(self, score, date, noticesleft): - info.score = score - info.date = date - info.noticesleft = noticesleft - info.lastnotice = ZEROHOUR_PLUSONEDAY + self.score = score + self.date = date + self.noticesleft = noticesleft + self.lastnotice = ZEROHOUR_PLUSONEDAY def __repr__(self): # For debugging |
