diff options
author | Stefano <l.stickell@yahoo.it> | 2013-03-07 16:41:25 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-03-07 16:41:25 +0100 |
commit | 8368a9a74d998b314f3864dcc8ce25c513d85cf9 (patch) | |
tree | 8995fd6c29742671a470667d59e8e6d167ed448b /module/plugins/hoster/ShragleCom.py | |
parent | Merge pull request #32 from stickell/patch-1 (diff) | |
download | pyload-8368a9a74d998b314f3864dcc8ce25c513d85cf9.tar.xz |
Various fixes in 24 plugins
Diffstat (limited to 'module/plugins/hoster/ShragleCom.py')
-rw-r--r-- | module/plugins/hoster/ShragleCom.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/ShragleCom.py b/module/plugins/hoster/ShragleCom.py index 8fe05a2b9..99f9f2366 100644 --- a/module/plugins/hoster/ShragleCom.py +++ b/module/plugins/hoster/ShragleCom.py @@ -32,14 +32,14 @@ def parseFileInfo(self, url): def getInfo(urls): for url in urls: - file_info = parseFileInfo(plugin, url) + file_info = parseFileInfo(ShragleCom, url) yield file_info class ShragleCom(Hoster): __name__ = "ShragleCom" __type__ = "hoster" __pattern__ = r"http://(?:www.)?(cloudnator|shragle).com/files/(?P<ID>.*?)/" - __version__ = "0.20" + __version__ = "0.21" __description__ = """Cloudnator.com (Shragle.com) Download PLugin""" __author_name__ = ("RaNaN", "zoidberg") __author_mail__ = ("RaNaN@pyload.org", "zoidberg@mujmail.cz") @@ -103,4 +103,4 @@ class ShragleCom(Hoster): self.wait() self.retry() -
\ No newline at end of file + |