diff options
author | fragonib <devnull@localhost> | 2010-12-13 23:11:01 +0100 |
---|---|---|
committer | fragonib <devnull@localhost> | 2010-12-13 23:11:01 +0100 |
commit | 89cfdaedbcf26a5a13195587ffc91f44552e5d10 (patch) | |
tree | 822e128bba4846e5137317b144707035fa3f5a08 /module/plugins/hoster/RapidshareCom.py | |
parent | small update for chat interfaces (diff) | |
download | pyload-89cfdaedbcf26a5a13195587ffc91f44552e5d10.tar.xz |
Fixes some rapidshare URL matches
Diffstat (limited to 'module/plugins/hoster/RapidshareCom.py')
-rw-r--r-- | module/plugins/hoster/RapidshareCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/RapidshareCom.py b/module/plugins/hoster/RapidshareCom.py index e449cbc9a..8370aebb7 100644 --- a/module/plugins/hoster/RapidshareCom.py +++ b/module/plugins/hoster/RapidshareCom.py @@ -46,7 +46,7 @@ def getInfo(urls): class RapidshareCom(Hoster): __name__ = "RapidshareCom" __type__ = "hoster" - __pattern__ = r"http://[\w\.]*?rapidshare.com/(?:files/(?P<id>\d*?)/(?P<name>.+)|#!download\|(?:\d+)\|(?P<id_new>\d+)\|(?P<name_new>[^|]+))" + __pattern__ = r"http://[\w\.]*?rapidshare.com/(?:files/(?P<id>\d*?)/(?P<name>[^?]+)|#!download\|(?:\w+)\|(?P<id_new>\d+)\|(?P<name_new>[^|]+))" __version__ = "1.31" __description__ = """Rapidshare.com Download Hoster""" __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"]] |