commit | cb1376b036edb7d3161c331cdf4f7451a2d97a3e | [log] [tgz] |
---|---|---|
author | Gavin D'souza <gavin18d@gmail.com> | Sat May 09 12:05:33 2020 +0530 |
committer | Gavin D'souza <gavin18d@gmail.com> | Sat May 09 12:05:33 2020 +0530 |
tree | f8a8f960390cd82e2ddc2ab4cb154d03ba9d481d | |
parent | 0c353a64a44fb5567e1de315ca0fef0092c0aa68 [diff] |
chore: verbose error message for coa recursion
diff --git a/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.py b/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.py index d9c5852..462685f 100644 --- a/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.py +++ b/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.py
@@ -113,7 +113,7 @@ try: coa = traverse({}, children, roots, roots, group_set) except RecursionError: - self.log() + self.log(_("Error occured while parsing Chart of Accounts: Please make sure that no two accounts have the same name")) for account in coa: coa[account]["root_type"] = root_type_map[account]