diff --git a/erpnext/accounts/doctype/chart_of_accounts/import_charts.py b/erpnext/accounts/doctype/chart_of_accounts/import_charts.py index c8049558cb..f95a4ed5fc 100644 --- a/erpnext/accounts/doctype/chart_of_accounts/import_charts.py +++ b/erpnext/accounts/doctype/chart_of_accounts/import_charts.py @@ -19,8 +19,8 @@ def import_charts(): "source_file": fname, "country": country }).insert() - print bean.doc.name + print bean.doc.name.encode("utf-8") else: - print "No chart for: " + chart.get("name") + print "No chart for: " + chart.get("name").encode("utf-8") frappe.db.commit() \ No newline at end of file