summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-07-20 03:25:14 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-07-20 03:25:14 +0200
commit05d258d98dd8c2faf0b769840fa1e3c4acccdce8 (patch)
tree20d379639d14a2b69deaa9e0376e33312b5bb994 /module/plugins/hooks
parent[ShareRapidCom] Fix https://github.com/pyload/pyload/issues/694 (diff)
downloadpyload-05d258d98dd8c2faf0b769840fa1e3c4acccdce8.tar.xz
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r--module/plugins/hooks/DownloadScheduler.py2
-rw-r--r--module/plugins/hooks/IRCInterface.py5
-rw-r--r--module/plugins/hooks/LinkdecrypterCom.py2
3 files changed, 3 insertions, 6 deletions
diff --git a/module/plugins/hooks/DownloadScheduler.py b/module/plugins/hooks/DownloadScheduler.py
index dbc1019e3..070c0634e 100644
--- a/module/plugins/hooks/DownloadScheduler.py
+++ b/module/plugins/hooks/DownloadScheduler.py
@@ -43,7 +43,7 @@ class DownloadScheduler(Hook):
self.updateSchedule()
def updateSchedule(self, schedule=None):
- if not schedule:
+ if schedule is None:
schedule = self.getConfig("timetable")
schedule = re.findall("(\d{1,2}):(\d{2})[\s]*(-?\d+)",
diff --git a/module/plugins/hooks/IRCInterface.py b/module/plugins/hooks/IRCInterface.py
index 9a9bab9b4..a29874469 100644
--- a/module/plugins/hooks/IRCInterface.py
+++ b/module/plugins/hooks/IRCInterface.py
@@ -59,12 +59,9 @@ class IRCInterface(Thread, Hook):
self.api = core.api # todo, only use api
def coreReady(self):
- self.new_package = {}
-
self.abort = False
-
- self.links_added = 0
self.more = []
+ self.new_package = {}
self.start()
diff --git a/module/plugins/hooks/LinkdecrypterCom.py b/module/plugins/hooks/LinkdecrypterCom.py
index d6acac4a9..4e08372fe 100644
--- a/module/plugins/hooks/LinkdecrypterCom.py
+++ b/module/plugins/hooks/LinkdecrypterCom.py
@@ -43,7 +43,7 @@ class LinkdecrypterCom(Hook):
def loadPatterns(self):
page = getURL("http://linkdecrypter.com/")
m = re.search(r'<b>Supported\(\d+\)</b>: <i>([^+<]*)', page)
- if not m:
+ if m is None:
self.logError(_("Crypter list not found"))
return