From b6cf75d2a8b0ee03e00e5efcc4263c273b53ab3d Mon Sep 17 00:00:00 2001 From: Anuja P Date: Sat, 5 Dec 2020 22:25:17 +0530 Subject: [PATCH] fix: error messsage indent fix --- erpnext/accounts/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/accounts/utils.py b/erpnext/accounts/utils.py index 267c26d47b..73e610abb8 100644 --- a/erpnext/accounts/utils.py +++ b/erpnext/accounts/utils.py @@ -78,7 +78,7 @@ def get_fiscal_years(transaction_date=None, fiscal_year=None, label="Date", verb else: return ((fy.name, fy.year_start_date, fy.year_end_date),) - error_msg = _("""{0} {1} not in any active Fiscal Year""").format(label, formatdate(transaction_date)) + error_msg = _("""{0} {1} not in any active Fiscal Year""").format(label, formatdate(transaction_date)) if company: error_msg = _("""{0} for {1}""").format(error_msg, company)