aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/parse_emails.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/parse_emails.py b/python/parse_emails.py
index c1fde68e..beae201d 100644
--- a/python/parse_emails.py
+++ b/python/parse_emails.py
@@ -350,7 +350,7 @@ def parse_email(email, date_received):
quotedate = parse_quotedate(fh, date_received)
except RuntimeError:
logging.warning("couldn't find received date in message: "
- "{email.name}, using {date_received}")
+ f"{email.name}, using {date_received}")
quotedate = date_received
expiration_dates = list_imm_dates(quotedate)
parse_fun = globals()['parse_'+source.lower()]