aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--b4/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/b4/__init__.py b/b4/__init__.py
index 03e773b..5c59150 100644
--- a/b4/__init__.py
+++ b/b4/__init__.py
@@ -302,8 +302,8 @@ class LoreMailbox:
continue
trailers, mismatches = fmsg.get_trailers(sloppy=sloppytrailers)
- for tname, tvalue, extdata in mismatches:
- lser.trailer_mismatches.add((tname, tvalue, fmsg.fromname, fmsg.fromemail))
+ for trailer in mismatches:
+ lser.trailer_mismatches.add((trailer[0], trailer[1], fmsg.fromname, fmsg.fromemail))
lvl = 1
while True:
logger.debug('%sParent: %s', ' ' * lvl, pmsg.full_subject)