fix: the frappe throw message is corrected in the group task validation (#33698)

fix: the frappe throw message is corrected in the group task validation (#33698)
This commit is contained in:
mergify[bot] 2023-01-18 21:47:22 +05:30 committed by GitHub
parent 60ec7b6cde
commit cc569c955f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,7 +80,7 @@ class Task(NestedSet):
if frappe.db.get_value("Task", d.task, "status") not in ("Completed", "Cancelled"):
frappe.throw(
_(
"Cannot complete task {0} as its dependant task {1} are not ccompleted / cancelled."
"Cannot complete task {0} as its dependant task {1} are not completed / cancelled."
).format(frappe.bold(self.name), frappe.bold(d.task))
)