From 936f36ccdaa5259a4d38a7a1aa220fe887cfeb7b Mon Sep 17 00:00:00 2001 From: scmmishra Date: Mon, 22 Apr 2019 18:55:19 +0530 Subject: [PATCH] fix: import `frappe._` in lms.py --- erpnext/www/lms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/www/lms.py b/erpnext/www/lms.py index a945361c07..7561d73d20 100644 --- a/erpnext/www/lms.py +++ b/erpnext/www/lms.py @@ -1,6 +1,7 @@ from __future__ import unicode_literals import erpnext.education.utils as utils import frappe +from frappe import _ # LMS Utils to Update State for Vue Store @frappe.whitelist()