summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/DeathByCaptcha.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hooks/DeathByCaptcha.py')
-rw-r--r--module/plugins/hooks/DeathByCaptcha.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hooks/DeathByCaptcha.py b/module/plugins/hooks/DeathByCaptcha.py
index 99d7f7401..f390954e1 100644
--- a/module/plugins/hooks/DeathByCaptcha.py
+++ b/module/plugins/hooks/DeathByCaptcha.py
@@ -148,7 +148,7 @@ class DeathByCaptcha(Hook):
raise DeathByCaptchaException(response)
ticket = response['captcha']
- for _ in xrange(24):
+ for _i in xrange(24):
sleep(5)
response = self.call_api("captcha/%d" % ticket, False)
if response['text'] and response['is_correct']: