fix: typo in error message (#26816) (#26817)

(cherry picked from commit 005291e6dd4088fca23fa36b85f1755510939823)

Co-authored-by: François de Ryckel <f.deryckel@gmail.com>
This commit is contained in:
Frappe PR Bot 2021-08-04 22:01:17 +05:30 committed by GitHub
parent 13192e1db1
commit bf8d0c256d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -230,7 +230,7 @@ class Account(NestedSet):
if self.check_gle_exists():
throw(_("Account with existing transaction can not be converted to group."))
elif self.account_type and not self.flags.exclude_account_type_check:
throw(_("Cannot covert to Group because Account Type is selected."))
throw(_("Cannot convert to Group because Account Type is selected."))
else:
self.is_group = 1
self.save()