diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-29 12:23:29 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-29 12:23:29 +0200 |
commit | e91d1b7b50c97fdbec0f99c071d3fd19b25e57bc (patch) | |
tree | b422868bae27bd7b2fc2e964a5b323161b312ce7 /module/plugins/accounts/ShareonlineBiz.py | |
parent | Fix http://forum.pyload.org/viewtopic.php?f=12&t=4419 (diff) | |
download | pyload-e91d1b7b50c97fdbec0f99c071d3fd19b25e57bc.tar.xz |
[Plugin] Fix set_cookies
Diffstat (limited to 'module/plugins/accounts/ShareonlineBiz.py')
-rw-r--r-- | module/plugins/accounts/ShareonlineBiz.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/accounts/ShareonlineBiz.py b/module/plugins/accounts/ShareonlineBiz.py index 31a1a24c6..1945b2743 100644 --- a/module/plugins/accounts/ShareonlineBiz.py +++ b/module/plugins/accounts/ShareonlineBiz.py @@ -18,10 +18,10 @@ class ShareonlineBiz(Account): def api_response(self, user, password, req): return self.load("http://api.share-online.biz/cgi-bin", - get={'q' : "userdetails", - 'aux' : "traffic", - 'username': user, - 'password': password}) + get={'q' : "userdetails", + 'aux' : "traffic", + 'username': user, + 'password': password}) def parse_info(self, user, password, data, req): |