From fd3a26dd46595fa1688b6e8401abee91db71d7b8 Mon Sep 17 00:00:00 2001 From: evilhero Date: Sun, 19 May 2019 19:10:57 -0400 Subject: [PATCH] FIX: fix for 32p Test Connection button not using on-screen information for testing --- mylar/auth32p.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/auth32p.py b/mylar/auth32p.py index a25e486b..f5ee6ada 100644 --- a/mylar/auth32p.py +++ b/mylar/auth32p.py @@ -54,7 +54,7 @@ class info32p(object): self.method = None if any([mylar.CONFIG.MODE_32P is True, self.test is True]): - lses = self.LoginSession(mylar.CONFIG.USERNAME_32P, mylar.CONFIG.PASSWORD_32P) + lses = self.LoginSession(self.username_32p, self.password_32p) if not lses.login(): if not self.test: logger.error('%s [LOGIN FAILED] Disabling 32P provider until login error(s) can be fixed in order to avoid temporary bans.' % self.module)