summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hook/ExpertDecoders.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/hook/ExpertDecoders.py')
-rw-r--r--pyload/plugins/hook/ExpertDecoders.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/pyload/plugins/hook/ExpertDecoders.py b/pyload/plugins/hook/ExpertDecoders.py
index 658a55288..dbd03c30c 100644
--- a/pyload/plugins/hook/ExpertDecoders.py
+++ b/pyload/plugins/hook/ExpertDecoders.py
@@ -14,7 +14,7 @@ from pyload.plugins.internal.Addon import Hook
class ExpertDecoders(Hook):
__name__ = "ExpertDecoders"
__type__ = "hook"
- __version__ = "0.01"
+ __version__ = "0.02"
__config__ = [("force", "bool", "Force CT even if client is connected", False),
("passkey", "password", "Access key", "")]
@@ -28,6 +28,11 @@ class ExpertDecoders(Hook):
API_URL = "http://www.fasttypers.org/imagepost.ashx"
+ #@TODO: Remove in 0.4.10
+ def initPeriodical(self):
+ pass
+
+
def getCredits(self):
res = getURL(self.API_URL, post={"key": self.getConfig("passkey"), "action": "balance"})