From e74113e89924e48ebcd726bd0499b668431c2c84 Mon Sep 17 00:00:00 2001 From: synweap15 Date: Thu, 13 Aug 2015 14:42:45 +0200 Subject: fix RapideoPl account parse_info method signature --- module/plugins/accounts/RapideoPl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/plugins/accounts') diff --git a/module/plugins/accounts/RapideoPl.py b/module/plugins/accounts/RapideoPl.py index 42d084bdb..beb49a43a 100644 --- a/module/plugins/accounts/RapideoPl.py +++ b/module/plugins/accounts/RapideoPl.py @@ -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()) -- cgit v1.2.3 From b68358f4125a6a2b14b35ef3339e68fb4db4171e Mon Sep 17 00:00:00 2001 From: synweap15 Date: Thu, 13 Aug 2015 14:43:33 +0200 Subject: RapideoPl account version bump --- module/plugins/accounts/RapideoPl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/plugins/accounts') diff --git a/module/plugins/accounts/RapideoPl.py b/module/plugins/accounts/RapideoPl.py index beb49a43a..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" -- cgit v1.2.3 From 20d0218b66177399ba923572949862bd6dff8498 Mon Sep 17 00:00:00 2001 From: synweap15 Date: Thu, 13 Aug 2015 14:43:53 +0200 Subject: fix NoPremiumPl account parse_info method signature --- module/plugins/accounts/NoPremiumPl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/plugins/accounts') 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()) -- cgit v1.2.3 From 96dd390398b998c807bf08f94f7334460c8624cd Mon Sep 17 00:00:00 2001 From: synweap15 Date: Thu, 13 Aug 2015 14:44:18 +0200 Subject: NoPremiumPl account version bump --- module/plugins/accounts/NoPremiumPl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/plugins/accounts') diff --git a/module/plugins/accounts/NoPremiumPl.py b/module/plugins/accounts/NoPremiumPl.py index 3a3f3d1ce..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" -- cgit v1.2.3