commit | d5ff6361594e771c399c7b8f8384253f49ba434b | [log] [tgz] |
---|---|---|
author | Devin Slauenwhite <devin.slauenwhite@gmail.com> | Sat Jul 17 14:42:38 2021 -0400 |
committer | Devin Slauenwhite <devin.slauenwhite@gmail.com> | Sat Jul 17 14:42:38 2021 -0400 |
tree | def4e23badd9e3269d87b63e68f7b6158922211b | |
parent | d8ed9dfcf476214a3171ef4f7aaeac884fb99c25 [diff] |
fix: missing parameter 'country'
diff --git a/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py b/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py index 4fd8413..8456b49 100644 --- a/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py +++ b/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py
@@ -391,5 +391,5 @@ }) company.save() - install_country_fixtures(company.name) + install_country_fixtures(company.name, company.country) company.create_default_tax_template()