diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-27 21:24:45 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-27 21:24:45 +0200 |
commit | 8b4c10aeb2849ca2a2e1d1dbacc798858d9f95ac (patch) | |
tree | 3a83f49550fabb815fc229f1be0f8b72de9f0a6f /module | |
parent | increased version (diff) | |
download | pyload-8b4c10aeb2849ca2a2e1d1dbacc798858d9f95ac.tar.xz |
utf8 rs auth encoding
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/RapidshareCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/RapidshareCom.py b/module/plugins/hoster/RapidshareCom.py index 9075a9877..eeff87e5a 100644 --- a/module/plugins/hoster/RapidshareCom.py +++ b/module/plugins/hoster/RapidshareCom.py @@ -45,7 +45,7 @@ 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>[^|]+))" - __version__ = "0.21" + __version__ = "0.22" __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"]] __author_name__ = ("spoob", "RaNaN", "mkaay") @@ -189,7 +189,7 @@ class RapidshareCom(Hoster): dl_dict = {"id": id, "name": name, "host": data[0], - "auth": data[1], + "auth": data[1].encode("utf8"), "server": self.api_data["serverid"], "size": self.api_data["size"] } |