diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-09-08 01:34:05 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-09-14 11:03:47 +0200 |
commit | 3d4f8e55ce4c87f3f3bb3ea49acb76ca607bfc8d (patch) | |
tree | 140b2f75e4e445c4aa899488439fa91e775a85d2 /pyload/config/Setup.py | |
parent | New printer (windows compatible) (diff) | |
download | pyload-3d4f8e55ce4c87f3f3bb3ea49acb76ca607bfc8d.tar.xz |
JsEngine rewritten + utils updated
Diffstat (limited to 'pyload/config/Setup.py')
-rw-r--r-- | pyload/config/Setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/config/Setup.py b/pyload/config/Setup.py index 63c6188c4..697b92fbb 100644 --- a/pyload/config/Setup.py +++ b/pyload/config/Setup.py @@ -264,8 +264,8 @@ class SetupAssistant: web = sqlite and beaker - from pyload.utils import JsEngine - js = True if JsEngine.ENGINE else False + from pyload.utils.JsEngine import JsEngine + js = True if JsEngine.find() else False self.print_dep(_("JS engine"), js) if not jinja: |