From b2d16aca74820c0d9a73fcaa5e57ca45fa8acf48 Mon Sep 17 00:00:00 2001 From: Jignesh Greycube Date: Mon, 6 Aug 2018 14:32:05 +0530 Subject: [PATCH] Updated Spelling Maxiumm to Maximum (#15090) --- erpnext/controllers/selling_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/controllers/selling_controller.py b/erpnext/controllers/selling_controller.py index a1e29190d49..748fe59ac3a 100644 --- a/erpnext/controllers/selling_controller.py +++ b/erpnext/controllers/selling_controller.py @@ -141,7 +141,7 @@ class SellingController(StockController): discount = flt(frappe.db.get_value("Item", d.item_code, "max_discount")) if discount and flt(d.discount_percentage) > discount: - frappe.throw(_("Maxiumm discount for Item {0} is {1}%").format(d.item_code, discount)) + frappe.throw(_("Maximum discount for Item {0} is {1}%").format(d.item_code, discount)) def set_qty_as_per_stock_uom(self): for d in self.get("items"):