summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Seoester <seoester@googlemail.com> 2013-06-03 21:22:57 +0200
committerGravatar Seoester <seoester@googlemail.com> 2013-06-03 21:22:57 +0200
commit3c75929ef6240e260f97e335ac23fc8275f03b48 (patch)
treec98e006ce6855ce647f06ef9a3ab09f69e441171 /module
parentAdded create_getInfo call (diff)
downloadpyload-3c75929ef6240e260f97e335ac23fc8275f03b48.tar.xz
super() function used
Diffstat (limited to 'module')
-rw-r--r--module/plugins/hoster/StreamcloudEu.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/StreamcloudEu.py b/module/plugins/hoster/StreamcloudEu.py
index 705bc4bb5..9e7c61ccc 100644
--- a/module/plugins/hoster/StreamcloudEu.py
+++ b/module/plugins/hoster/StreamcloudEu.py
@@ -15,7 +15,7 @@ class StreamcloudEu(XFileSharingPro):
DIRECT_LINK_PATTERN = r'file: "(http://(stor|cdn)\d+\.streamcloud.eu:?\d*/.*/video\.mp4)",'
def setup(self):
- XFileSharingPro.setup(self)
+ super(XFileSharingPro, self).setup()
self.multiDL = True
def getDownloadLink(self):
@@ -23,6 +23,6 @@ class StreamcloudEu(XFileSharingPro):
if found:
return found.group(1)
- return XFileSharingPro.getDownloadLink(self)
+ return super(XFileSharingPro, self).getDownloadLink()
getInfo = create_getInfo(StreamcloudEu)