diff options
author | Shuralon <manu.aslan@live.de> | 2015-01-11 14:27:00 +0100 |
---|---|---|
committer | Shuralon <manu.aslan@live.de> | 2015-01-11 14:27:00 +0100 |
commit | fa5cf2866dd7c5a16f2aeb0bc6903ca3968101b3 (patch) | |
tree | 3990cc7bcbce3561d66b5ff43b17ca3c19597025 | |
parent | [RehostTo] Fix (diff) | |
download | pyload-fa5cf2866dd7c5a16f2aeb0bc6903ca3968101b3.tar.xz |
[RehostTo] Fix
-rw-r--r-- | module/plugins/hoster/RehostTo.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/module/plugins/hoster/RehostTo.py b/module/plugins/hoster/RehostTo.py index e706fa6c6..1f7913a72 100644 --- a/module/plugins/hoster/RehostTo.py +++ b/module/plugins/hoster/RehostTo.py @@ -20,9 +20,12 @@ class RehostTo(MultiHoster): def handlePremium(self, pyfile): self.download("http://rehost.to/process_download.php", get={'user': "cookie", - 'pass': self.account.getAccountData(self.user)['session'], + 'pass': self.account.getAccountInfo(self.user)['session'], 'dl' : pyfile.url}, disposition=True) getInfo = create_getInfo(RehostTo) + + +getInfo = create_getInfo(RehostTo) |