diff options
author | 2014-04-11 12:26:05 +0200 | |
---|---|---|
committer | 2014-04-21 17:22:19 +0200 | |
commit | 41559c6d7c17862cc5640631e8a1bb7a00f923da (patch) | |
tree | d268d8d659b3099f561f03a18e5efe4fbf29ef8a /pyload/plugins/hoster/RPNetBiz.py | |
parent | Fix __pattern__ www (diff) | |
download | pyload-41559c6d7c17862cc5640631e8a1bb7a00f923da.tar.xz |
Use pyfile instead self.pyfile
Merges vuolter/pyload@b7f6e2e
(cherry picked from commit 4d978dedd16418a4e7d8c81bd819a6a5fa432057)
Diffstat (limited to 'pyload/plugins/hoster/RPNetBiz.py')
-rw-r--r-- | pyload/plugins/hoster/RPNetBiz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/hoster/RPNetBiz.py b/pyload/plugins/hoster/RPNetBiz.py index 38045b452..380f84c53 100644 --- a/pyload/plugins/hoster/RPNetBiz.py +++ b/pyload/plugins/hoster/RPNetBiz.py @@ -34,7 +34,7 @@ class RPNetBiz(Hoster): # Get the download link response = self.load("https://premium.rpnet.biz/client_api.php", get={"username": user, "password": data['password'], - "action": "generate", "links": self.pyfile.url}) + "action": "generate", "links": pyfile.url}) self.logDebug("JSON data: %s" % response) link_status = json_loads(response)['links'][0] # get the first link... since we only queried one |