diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-09 16:52:01 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-09 16:52:01 +0100 |
commit | 12bf6e492c980814646c6bc6e88a2ed759f5acbc (patch) | |
tree | 9f9af19b6dd43e881e74d21dd9b921b13cf923f8 /module/plugins/hoster | |
parent | [ZippyshareCom] Update NAME_PATTERN (diff) | |
download | pyload-12bf6e492c980814646c6bc6e88a2ed759f5acbc.tar.xz |
[PluginManager] Improve error handling for parse method
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/RapidshareCom.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/module/plugins/hoster/RapidshareCom.py b/module/plugins/hoster/RapidshareCom.py index 30abd7c7f..2a81108cd 100644 --- a/module/plugins/hoster/RapidshareCom.py +++ b/module/plugins/hoster/RapidshareCom.py @@ -44,12 +44,9 @@ def getInfo(urls): class RapidshareCom(Hoster): __name__ = "RapidshareCom" __type__ = "hoster" - __version__ = "1.39" + __version__ = "1.40" __pattern__ = r'https?://(?:www\.)?rapidshare\.com/(?:files/(?P<id>\d+)/(?P<name>[^?]+)|#!download\|(?:\w+)\|(?P<id_new>\d+)\|(?P<name_new>[^|]+))' - __config__ = [("server", - "Cogent;Deutsche Telekom;Level(3);Level(3) #2;GlobalCrossing;Level(3) #3;Teleglobe;GlobalCrossing #2;TeliaSonera #2;Teleglobe #2;TeliaSonera #3;TeliaSonera", - "Preferred Server", "None")] __description__ = """Rapidshare.com hoster plugin""" __license__ = "GPLv3" |