diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-18 23:12:41 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-18 23:12:41 +0200 |
commit | 30964add434eb9a2634ef383556b1478df3dd73f (patch) | |
tree | 812c389a573d490051eb1c09431b57658870c492 /module | |
parent | Merge pull request #1754 from joberreiter/patch-3 (diff) | |
parent | NoPremiumPl account version bump (diff) | |
download | pyload-30964add434eb9a2634ef383556b1478df3dd73f.tar.xz |
Merge pull request #1752 from synweap15/rapideo-nopremium-signature-fix
[Rapideo.pl] [NoPremium.pl] Method signature fix
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/accounts/NoPremiumPl.py | 4 | ||||
-rw-r--r-- | module/plugins/accounts/RapideoPl.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/accounts/NoPremiumPl.py b/module/plugins/accounts/NoPremiumPl.py index e9dad7647..97e58f5f0 100644 --- a/module/plugins/accounts/NoPremiumPl.py +++ b/module/plugins/accounts/NoPremiumPl.py @@ -11,7 +11,7 @@ from module.plugins.internal.Account import Account class NoPremiumPl(Account): __name__ = "NoPremiumPl" __type__ = "account" - __version__ = "0.03" + __version__ = "0.04" __status__ = "testing" __description__ = "NoPremium.pl account plugin" @@ -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()) diff --git a/module/plugins/accounts/RapideoPl.py b/module/plugins/accounts/RapideoPl.py index 42d084bdb..e9a483927 100644 --- a/module/plugins/accounts/RapideoPl.py +++ b/module/plugins/accounts/RapideoPl.py @@ -11,7 +11,7 @@ from module.plugins.internal.Account import Account class RapideoPl(Account): __name__ = "RapideoPl" __type__ = "account" - __version__ = "0.03" + __version__ = "0.04" __status__ = "testing" __description__ = "Rapideo.pl account plugin" @@ -32,7 +32,7 @@ class RapideoPl(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()) |