diff options
Diffstat (limited to 'module/plugins/hoster/BasePlugin.py')
-rw-r--r-- | module/plugins/hoster/BasePlugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/BasePlugin.py b/module/plugins/hoster/BasePlugin.py index 8da7ff5df..7c7e75d33 100644 --- a/module/plugins/hoster/BasePlugin.py +++ b/module/plugins/hoster/BasePlugin.py @@ -13,7 +13,7 @@ from module.plugins.Hoster import Hoster class BasePlugin(Hoster): __name__ = "BasePlugin" __type__ = "hoster" - __version__ = "0.39" + __version__ = "0.40" __pattern__ = r'^unmatchable$' @@ -48,7 +48,7 @@ class BasePlugin(Hoster): content = urllib2.urlopen(self.link).info()['Content-Disposition'].split(';') self.pyfile.name = content[1].split('filename=')[1][1:-1] finally: - return super(SimpleHoster, self).download(url, get, post, ref, cookies, False) + return super(BasePlugin, self).download(url, get, post, ref, cookies, False) def process(self, pyfile): |