From 56f5156f3c3c39755640d76f68d6aec58aaf5c3a Mon Sep 17 00:00:00 2001 From: thecarly Date: Mon, 10 Aug 2015 12:50:44 +0530 Subject: [PATCH] [minor] fixed typo --- erpnext/setup/doctype/company/company.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/setup/doctype/company/company.py b/erpnext/setup/doctype/company/company.py index 5660d892cc..cf47de5f6f 100644 --- a/erpnext/setup/doctype/company/company.py +++ b/erpnext/setup/doctype/company/company.py @@ -32,7 +32,7 @@ class Company(Document): frappe.throw(_("Abbreviation cannot have more than 5 characters")) if not self.abbr.strip(): - frappe.throw(_("Abbr can not be blank or space")) + frappe.throw(_("Abbreviation is mandatory")) self.previous_default_currency = frappe.db.get_value("Company", self.name, "default_currency") if self.default_currency and self.previous_default_currency and \