diff options
author | Seoester <seoester@googlemail.com> | 2013-06-24 00:51:12 +0200 |
---|---|---|
committer | Seoester <seoester@googlemail.com> | 2013-06-24 00:51:12 +0200 |
commit | a3ae4ba6df133beb7f6daf0443210f59d3e86399 (patch) | |
tree | d4b32864e8086bc5a7ba2e6190119a6176569c3f /module/plugins/hoster/StreamcloudEu.py | |
parent | UnrestrictLi: added ability to delete the download history (diff) | |
download | pyload-a3ae4ba6df133beb7f6daf0443210f59d3e86399.tar.xz |
Bugfix: super() function
Diffstat (limited to 'module/plugins/hoster/StreamcloudEu.py')
-rw-r--r-- | module/plugins/hoster/StreamcloudEu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/StreamcloudEu.py b/module/plugins/hoster/StreamcloudEu.py index 9e7c61ccc..7dec2e65b 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): - super(XFileSharingPro, self).setup() + super(StreamcloudEu, self).setup() self.multiDL = True def getDownloadLink(self): @@ -23,6 +23,6 @@ class StreamcloudEu(XFileSharingPro): if found: return found.group(1) - return super(XFileSharingPro, self).getDownloadLink() + return super(StreamcloudEu, self).getDownloadLink() getInfo = create_getInfo(StreamcloudEu) |