diff options
| author | twouters | 2001-05-29 13:38:11 +0000 |
|---|---|---|
| committer | twouters | 2001-05-29 13:38:11 +0000 |
| commit | fc4d5d925751fb5051ea4dabbc80ce9579fd954c (patch) | |
| tree | a3ab0580eaa8270d74fefbcea11466c9eee12c48 | |
| parent | 1b6bea0545fcf50eb5228d591d3dd620d78b169d (diff) | |
| download | mailman-fc4d5d925751fb5051ea4dabbc80ce9579fd954c.tar.gz mailman-fc4d5d925751fb5051ea4dabbc80ce9579fd954c.tar.zst mailman-fc4d5d925751fb5051ea4dabbc80ce9579fd954c.zip | |
Fix typo observed by nobody (aka Anonymous) in SF bug #426002: 'data' should
be 'date'. I don't usually like touching pipermail, but in this case, the
pain is minimal.
Closes SF bug #426002.
| -rw-r--r-- | Mailman/Archiver/pipermail.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Archiver/pipermail.py b/Mailman/Archiver/pipermail.py index 1dbee2ecc..d731312ee 100644 --- a/Mailman/Archiver/pipermail.py +++ b/Mailman/Archiver/pipermail.py @@ -356,7 +356,7 @@ class T: refs[0]) for ref in refs[1:]: a = self.database.getArticle(self.archive, ref) - if a.date > maxdate.data: + if a.date > maxdate.date: maxdate = a parentID = maxdate.msgid else: |
