diff options
author | 2015-08-18 23:12:41 +0200 | |
---|---|---|
committer | 2015-08-18 23:12:41 +0200 | |
commit | 30964add434eb9a2634ef383556b1478df3dd73f (patch) | |
tree | 812c389a573d490051eb1c09431b57658870c492 /module/plugins/accounts/RapideoPl.py | |
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/plugins/accounts/RapideoPl.py')
-rw-r--r-- | module/plugins/accounts/RapideoPl.py | 4 |
1 files changed, 2 insertions, 2 deletions
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()) |