summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/EuroshareEu.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-08 10:09:56 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-08 10:09:56 +0200
commit285c4bd667d303efb0818f71b2e26bc9038eeee5 (patch)
tree072cf170707abceaf43c78c8b96942acc9081821 /module/plugins/hoster/EuroshareEu.py
parent[SimpleHoster] Improve logging and file checking (diff)
downloadpyload-285c4bd667d303efb0818f71b2e26bc9038eeee5.tar.xz
Update plugins
Diffstat (limited to 'module/plugins/hoster/EuroshareEu.py')
-rw-r--r--module/plugins/hoster/EuroshareEu.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/EuroshareEu.py b/module/plugins/hoster/EuroshareEu.py
index 842e0cb87..857faebc5 100644
--- a/module/plugins/hoster/EuroshareEu.py
+++ b/module/plugins/hoster/EuroshareEu.py
@@ -8,7 +8,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class EuroshareEu(SimpleHoster):
__name__ = "EuroshareEu"
__type__ = "hoster"
- __version__ = "0.28"
+ __version__ = "0.29"
__pattern__ = r'http://(?:www\.)?euroshare\.(eu|sk|cz|hu|pl)/file/.+'
__config__ = [("use_premium", "bool", "Use premium account if available", True)]
@@ -58,11 +58,11 @@ class EuroshareEu(SimpleHoster):
self.link = "http://euroshare.eu%s" % m.group(1)
- def checkFile(self, rules={}):
+ def checkFile(self):
if self.checkDownload({"multi-dl": re.compile(self.ERR_PARDL_PATTERN)})
self.longWait(5 * 60, 12)
- return super(EuroshareEu, self).checkFile(rules)
+ return super(EuroshareEu, self).checkFile()
getInfo = create_getInfo(EuroshareEu)