mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-20 21:49:18 +00:00
fix: Incorrect translation syntax
This commit is contained in:
@@ -15,7 +15,7 @@ class QualityProcedure(NestedSet):
|
||||
if process.procedure:
|
||||
doc = frappe.get_doc("Quality Procedure", process.procedure)
|
||||
if doc.parent_quality_procedure:
|
||||
frappe.throw(_("{0} already has a Parent Procedure {1}.".format(process.procedure, doc.parent_quality_procedure)))
|
||||
frappe.throw(_("{0} already has a Parent Procedure {1}.").format(process.procedure, doc.parent_quality_procedure))
|
||||
self.is_group = 1
|
||||
|
||||
def on_update(self):
|
||||
|
||||
Reference in New Issue
Block a user