diff options
Diffstat (limited to 'module/plugins/accounts/UploadingCom.py')
-rw-r--r-- | module/plugins/accounts/UploadingCom.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/module/plugins/accounts/UploadingCom.py b/module/plugins/accounts/UploadingCom.py index 5052266a4..6f6e0eed5 100644 --- a/module/plugins/accounts/UploadingCom.py +++ b/module/plugins/accounts/UploadingCom.py @@ -61,5 +61,8 @@ class UploadingCom(Account): ("uploading.com", "_lang" , "en")]) self.load("http://uploading.com/", req=req) - self.load("https://uploading.com/general/login_form/?JsHttpRequest=%s-xml" % long(time.time() * 1000, req=req), - post={'email': user, 'password': data['password'], 'remember': "on"}) + self.load("https://uploading.com/general/login_form/?JsHttpRequest=%s-xml" % long(time.time() * 1000), + post={'email' : user, + 'password': data['password'], + 'remember': "on"}, + req=req) |