diff options
Diffstat (limited to 'module/plugins/accounts')
| -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())  | 
