From 243fe6903d3d2ba12acc36c6b3ccdec46ead4517 Mon Sep 17 00:00:00 2001 From: Yax <1949284+kianby@users.noreply.github.com> 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)