fix: Removed html tags in pop up message (#20603)
diff --git a/erpnext/selling/doctype/quotation/quotation.py b/erpnext/selling/doctype/quotation/quotation.py
index 8ec2b76..53e5d35 100644
--- a/erpnext/selling/doctype/quotation/quotation.py
+++ b/erpnext/selling/doctype/quotation/quotation.py
@@ -80,7 +80,7 @@
 				if reason.get('lost_reason') in lost_reasons_lst:
 					self.append('lost_reasons', reason)
 				else:
-					frappe.throw(_("Invalid lost reason <b>{0}</b>, please create a new lost reason".format(reason.get('lost_reason'))))
+					frappe.throw(_("Invalid lost reason {0}, please create a new lost reason".format(frappe.bold(reason.get('lost_reason')))))
 
 			self.update_opportunity()
 			self.update_lead()