From 5f4a16630ee1d16e9aa307194314a63ea2baa7bb Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Mon, 28 Nov 2016 19:20:05 +0000 Subject: [PATCH] Fix a typo in minify script --- minify_web_js.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minify_web_js.py b/minify_web_js.py index f2ff294eb..31b98ee33 100755 --- a/minify_web_js.py +++ b/minify_web_js.py @@ -42,7 +42,7 @@ if module_exists('closure'): return True except subprocess.CalledProcessError: return False -elif module_exists('sslimit'): +elif module_exists('slimit'): from slimit import minify else: raise ImportError('Requires "slimit" package for minifying WebUI files.')