From bd614278df8e2ec16ec0ecefff9244f3d5b1c412 Mon Sep 17 00:00:00 2001 From: Son Date: Tue, 28 Dec 2021 10:51:43 +0100 Subject: [PATCH] increase bounce info length --- cron.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cron.py b/cron.py index e7944bb8..a935be51 100644 --- a/cron.py +++ b/cron.py @@ -405,7 +405,7 @@ def all_bounce_report() -> str: .first() ) # most_recent.info can be very verbose - res += f"Most recent cause: \n{most_recent.info[:200] if most_recent.info else 'N/A'}" + res += f"Most recent cause: \n{most_recent.info[:1000] if most_recent.info else 'N/A'}" res += "\n----\n" return res