From 0cd2f9ef055f8207df9ece79825269f509c0d7bc Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Tue, 5 Aug 2025 17:26:33 +0530 Subject: [PATCH] fix: jinja template had missing `}}` (#33541) Signed-off-by: Akhil Narang --- frappe/templates/emails/file_backup_notification.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/templates/emails/file_backup_notification.html b/frappe/templates/emails/file_backup_notification.html index a66799f3bc..e5c2cb812c 100644 --- a/frappe/templates/emails/file_backup_notification.html +++ b/frappe/templates/emails/file_backup_notification.html @@ -1,6 +1,6 @@ Hello,
-

{{ _("Please use following links to download file backup.")

-

{{ _("Public Files Backup:") {{ backup_path_files }}

-

{{ _("Private Files Backup:") {{ backup_path_private_files }}

+

{{ _("Please use following links to download file backup.") }}

+

{{ _("Public Files Backup:") }} {{ backup_path_files }}

+

{{ _("Private Files Backup:") }} {{ backup_path_private_files }}