diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-02-04 19:56:19 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-02-04 19:56:19 +0100 |
commit | 35daa21f669c4f522b4e6785f6a3281714684671 (patch) | |
tree | 015d86021d0172b08990a6477f9ff9f427d89fb4 /module/CaptchaManager.py | |
parent | fixes (diff) | |
download | pyload-35daa21f669c4f522b4e6785f6a3281714684671.tar.xz |
CNL fixes
Diffstat (limited to 'module/CaptchaManager.py')
-rw-r--r-- | module/CaptchaManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/CaptchaManager.py b/module/CaptchaManager.py index 99d29f37d..7c851a16e 100644 --- a/module/CaptchaManager.py +++ b/module/CaptchaManager.py @@ -128,7 +128,7 @@ class CaptchaTask(): self.status = "shared-user" def timedOut(self): - return self.waitUntil >= time() + return time() > self.waitUntil def invalid(self): """ indicates the captcha was not correct """ |