diff options
| author | 2015-07-17 03:03:26 +0200 | |
|---|---|---|
| committer | 2015-07-17 03:03:26 +0200 | |
| commit | d2e2b127651a5a44b56337eb6d9ca246c97a208a (patch) | |
| tree | 46f34e2102fd44ed2f719727eb07a445e7baa77d /module/plugins/accounts/FastixRu.py | |
| parent | No camelCase style anymore (diff) | |
| download | pyload-d2e2b127651a5a44b56337eb6d9ca246c97a208a.tar.xz | |
Spare fixes and code cosmetics
Diffstat (limited to 'module/plugins/accounts/FastixRu.py')
| -rw-r--r-- | module/plugins/accounts/FastixRu.py | 10 | 
1 files changed, 8 insertions, 2 deletions
| diff --git a/module/plugins/accounts/FastixRu.py b/module/plugins/accounts/FastixRu.py index eaf12619a..d8c992bb3 100644 --- a/module/plugins/accounts/FastixRu.py +++ b/module/plugins/accounts/FastixRu.py @@ -16,7 +16,10 @@ class FastixRu(Account):      def load_account_info(self, user, req):          data = self.get_account_data(user) -        html = json_loads(self.load("http://fastix.ru/api_v2/", get={'apikey': data['api'], 'sub': "getaccountdetails"}), req=req) +        html = json_loads(self.load("http://fastix.ru/api_v2/", +                                    get={'apikey': data['api'], +                                         'sub'   : "getaccountdetails"}), +                                    req=req)          points = html['points']          kb     = float(points) * 1024 ** 2 / 1000 @@ -30,7 +33,10 @@ class FastixRu(Account):      def login(self, user, data, req):          html = self.load("https://fastix.ru/api_v2/", -                        get={'sub': "get_apikey", 'email': user, 'password': data['password']}, req=req) +                         get={'sub'     : "get_apikey", +                              'email'   : user, +                              'password': data['password']}, +                         req=req)          api = json_loads(html)          api = api['apikey'] | 
