From 7b095e97ad3edb4f752ab2366869270f16b1a583 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 16 Nov 2011 14:25:36 +0530 Subject: [PATCH] Update erpnext/selling/doctype/quotation/quotation.py --- erpnext/selling/doctype/quotation/quotation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/doctype/quotation/quotation.py b/erpnext/selling/doctype/quotation/quotation.py index f76f520886..10bccaf79b 100644 --- a/erpnext/selling/doctype/quotation/quotation.py +++ b/erpnext/selling/doctype/quotation/quotation.py @@ -136,7 +136,7 @@ class DocType(TransactionBase): chk_dupl_itm = [] for d in getlist(self.doclist,'quotation_details'): if [cstr(d.item_code),cstr(d.description)] in chk_dupl_itm: - msgprint("Item %s has been entered twice. Please change atleast description to continue" % d.item_code) + msgprint("Item %s has been entered twice. Please change description atleast to continue" % d.item_code) raise Exception else: chk_dupl_itm.append([cstr(d.item_code),cstr(d.description)])