commit | 0d968fabfecafe544fe5700922eae206a4cb5816 | [log] [tgz] |
---|---|---|
author | Devin Slauenwhite <devin.slauenwhite@gmail.com> | Sat Jul 17 14:42:38 2021 -0400 |
committer | Subin Tom <subin-home@Subins-MacBook-Air.local> | Thu Jul 22 13:44:09 2021 +0530 |
tree | 20fccb27724a8b4938238a525d5d88e1fe2508d2 | |
parent | 28d52c4a9521759625bb13e5ea0c50c9112e4fed [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()