From 6661745e77b7a08e5f9a8af80d0f21f626ef89d4 Mon Sep 17 00:00:00 2001 From: Ayub khan Date: Thu, 11 Jul 2019 14:42:14 +0500 Subject: [PATCH] INCR-402 python3 compatibility --- common/djangoapps/edxmako/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/edxmako/__init__.py b/common/djangoapps/edxmako/__init__.py index 7a8614bca5..e237d6f7a0 100644 --- a/common/djangoapps/edxmako/__init__.py +++ b/common/djangoapps/edxmako/__init__.py @@ -13,7 +13,7 @@ # limitations under the License. LOOKUP = {} -from .paths import add_lookup, lookup_template, clear_lookups, save_lookups +from .paths import add_lookup, clear_lookups, lookup_template, save_lookups class Engines(object):