diff --git a/erpnext/selling/doctype/customer/customer.py b/erpnext/selling/doctype/customer/customer.py
index 5f2c2641961..66056854728 100644
--- a/erpnext/selling/doctype/customer/customer.py
+++ b/erpnext/selling/doctype/customer/customer.py
@@ -527,11 +527,14 @@ def check_credit_limit(customer, company, ignore_outstanding_sales_order=False,
_("Please contact your administrator to extend the credit limits for {0}.").format(customer)
)
- user_list = "
".format(''.join(credit_controller_users_formatted))
- message = _("Please contact any of the following users to extend the credit limits for {0}: {1}").format(
- customer, user_list
+ user_list = "
".format(
+ "".join(credit_controller_users_formatted)
)
+ message = _(
+ "Please contact any of the following users to extend the credit limits for {0}: {1}"
+ ).format(customer, user_list)
+
# if the current user does not have permissions to override credit limit,
# prompt them to send out an email to the controller users
frappe.msgprint(