diff options
author | synweap15 <shamdog+github@gmail.com> | 2015-08-13 14:43:53 +0200 |
---|---|---|
committer | synweap15 <shamdog+github@gmail.com> | 2015-08-13 14:43:53 +0200 |
commit | 20d0218b66177399ba923572949862bd6dff8498 (patch) | |
tree | bfb12790ff99f226cab3f72e92896943c48f1b15 | |
parent | RapideoPl account version bump (diff) | |
download | pyload-20d0218b66177399ba923572949862bd6dff8498.tar.xz |
fix NoPremiumPl account parse_info method signature
-rw-r--r-- | module/plugins/accounts/NoPremiumPl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/accounts/NoPremiumPl.py b/module/plugins/accounts/NoPremiumPl.py index e9dad7647..3a3f3d1ce 100644 --- a/module/plugins/accounts/NoPremiumPl.py +++ b/module/plugins/accounts/NoPremiumPl.py @@ -32,7 +32,7 @@ class NoPremiumPl(Account): _pwd = None - def parse_info(self, name, req): + def parse_info(self, user, password, data, req): self._req = req try: result = json_loads(self.run_auth_query()) |