From 33dee87cb24f2ab4ad4cc010b88af3f451779275 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 26 May 2026 13:21:44 +0200 Subject: [PATCH] send_hemail now returns tuples of same length --- tienda/utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tienda/utilities.py b/tienda/utilities.py index e10de03..cb8a48e 100644 --- a/tienda/utilities.py +++ b/tienda/utilities.py @@ -33,7 +33,7 @@ def send_hemail(dest: str, title: str, body: str, nbody: str): ) logger.info("EMAIL_SENT to=%s subject=%s", dest, title) - return (True,) + return (True, None) except Exception as e: logger.exception("EMAIL_SEND_FAILED to=%s subject=%s error=%s", dest, title, str(e)) return (False, e) \ No newline at end of file