From f1c5d834950b774d4600705f9af3e0302401e513 Mon Sep 17 00:00:00 2001 From: Yax Date: Sun, 29 Mar 2020 16:05:12 +0200 Subject: [PATCH] fix var --- stacosys/core/cron.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacosys/core/cron.py b/stacosys/core/cron.py index 0ede34e..31fd697 100644 --- a/stacosys/core/cron.py +++ b/stacosys/core/cron.py @@ -27,7 +27,7 @@ def fetch_mail_answers(): for msg in mailer.fetch(): if re.search(r'.*STACOSYS.*\[(\d+)\:(\w+)\]', msg.subject, re.DOTALL): - if full_msg and _reply_comment_email(msg): + if _reply_comment_email(msg): mailer.delete(msg.id)