summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
Diffstat (limited to 'module')
-rw-r--r--module/plugins/decrypter/SerienjunkiesOrg.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/module/plugins/decrypter/SerienjunkiesOrg.py b/module/plugins/decrypter/SerienjunkiesOrg.py
index a73779dd3..ce1721e92 100644
--- a/module/plugins/decrypter/SerienjunkiesOrg.py
+++ b/module/plugins/decrypter/SerienjunkiesOrg.py
@@ -148,18 +148,14 @@ class SerienjunkiesOrg(Plugin):
linkgroups[key] = []
linkgroups[key].append(link)
for group in linkgroups.values():
- print "group", group
for pHoster in preferredHoster:
- print "phoster", pHoster
hmatch = False
for link in group:
- print "link", link
m = hosterPattern.match(link)
if m:
if pHoster == self.hosterMap[m.group(1)]:
links.append(link)
hmatch = True
- print "match"
break
if hmatch:
break