summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r--module/plugins/accounts/MegaRapidCz.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/accounts/MegaRapidCz.py b/module/plugins/accounts/MegaRapidCz.py
index 83b1bf86b..440eba8da 100644
--- a/module/plugins/accounts/MegaRapidCz.py
+++ b/module/plugins/accounts/MegaRapidCz.py
@@ -46,7 +46,7 @@ class MegaRapidCz(Account):
def login(self, user, data, req):
- htm = req.load("http://megarapid.cz/prihlaseni/", cookies=True)
+ htm = req.load("http://megarapid.cz/prihlaseni/")
if "Heslo:" in htm:
start = htm.index('id="inp_hash" name="hash" value="')
htm = htm[start + 33:]
@@ -56,4 +56,4 @@ class MegaRapidCz(Account):
"login": user,
"pass1": data['password'],
"remember": 0,
- "sbmt": u"Přihlásit"}, cookies=True)
+ "sbmt": u"Přihlásit"})