summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/SimplyPremiumCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-07-20 02:25:53 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-07-20 03:33:00 +0200
commit9762ac2fe94e3c6709fc46b6e9bde99e10cb3681 (patch)
tree9faa53476d13cb9b17bb12fd5fcea9d8df03305b /module/plugins/accounts/SimplyPremiumCom.py
parent[UpdateManager] Rewritten removePlugins method + protect from self-removing (diff)
downloadpyload-9762ac2fe94e3c6709fc46b6e9bde99e10cb3681.tar.xz
[account] self.html -> html (where was possible)
Diffstat (limited to 'module/plugins/accounts/SimplyPremiumCom.py')
-rw-r--r--module/plugins/accounts/SimplyPremiumCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/accounts/SimplyPremiumCom.py b/module/plugins/accounts/SimplyPremiumCom.py
index 37aff09b3..6eace8838 100644
--- a/module/plugins/accounts/SimplyPremiumCom.py
+++ b/module/plugins/accounts/SimplyPremiumCom.py
@@ -53,7 +53,7 @@ class SimplyPremiumCom(Account):
else:
post_data = {"login_name": user, "login_pass": data['password']}
- self.html = req.load("http://www.simply-premium.com/login.php", post=post_data)
+ html = req.load("http://www.simply-premium.com/login.php", post=post_data)
- if 'logout' not in self.html:
+ if 'logout' not in html:
self.wrongPassword()