From b6d7a45392ff15e9713f87a389e96cb4ba3a7a4d Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 24 Aug 2016 14:50:04 +0530 Subject: [PATCH] [fix] sync languages after frappe install --- frappe/utils/install.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/utils/install.py b/frappe/utils/install.py index 931f6cb9f2..e84d6452ac 100644 --- a/frappe/utils/install.py +++ b/frappe/utils/install.py @@ -23,6 +23,9 @@ def after_install(): import_country_and_currency() + from frappe.core.doctype.language.language import sync_languages + sync_languages() + # save default print setting print_settings = frappe.get_doc("Print Settings") print_settings.save()