diff options
author | 2013-12-01 00:08:11 +0100 | |
---|---|---|
committer | 2013-12-01 00:08:11 +0100 | |
commit | 95270599f2a0d0042c75f63f30a3e013849439f7 (patch) | |
tree | ced2dc611ed51e43251b980e2a1578fe90674858 /pyload/plugins/Base.py | |
parent | Updated translations (diff) | |
download | pyload-95270599f2a0d0042c75f63f30a3e013849439f7.tar.xz |
fixed are few addons and improved crypter workarounds
Diffstat (limited to 'pyload/plugins/Base.py')
-rw-r--r-- | pyload/plugins/Base.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyload/plugins/Base.py b/pyload/plugins/Base.py index ae8614b0d..b6668ea90 100644 --- a/pyload/plugins/Base.py +++ b/pyload/plugins/Base.py @@ -105,6 +105,9 @@ class Base(object): #: last interaction task self.task = None + #: js engine, see `JsEngine` + self.js = self.core.js + def __getitem__(self, item): """ Retrieves meta data attribute """ return getattr(self, "__%s__" % item) |