diff options
| -rw-r--r-- | Mailman/Cgi/admindb.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Mailman/Cgi/admindb.py b/Mailman/Cgi/admindb.py index 155ecc3f6..9a0aef45a 100644 --- a/Mailman/Cgi/admindb.py +++ b/Mailman/Cgi/admindb.py @@ -426,11 +426,7 @@ def show_helds_overview(mlist, form): counter = 1 for id in bysender[sender]: info = mlist.GetRecord(id) - if len(info) == 5: - ptime, sender, subject, reason, filename = info - msgdata = {} - else: - ptime, sender, subject, reason, filename, msgdata = info + ptime, sender, subject, reason, filename, msgdata = info # BAW: This is really the size of the message pickle, which should # be close, but won't be exact. Sigh, good enough. try: |
