diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-12-14 16:11:16 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-12-27 21:20:16 +0100 |
commit | f9e57022de88730da643f5fb4efe5599c879c6ad (patch) | |
tree | ba5d6e2db1bb4c85c1e482330cafec8d53801871 /module/plugins/accounts/OverLoadMe.py | |
parent | Update captchas (diff) | |
download | pyload-f9e57022de88730da643f5fb4efe5599c879c6ad.tar.xz |
[accounts] Strict comparison for numbers
Diffstat (limited to 'module/plugins/accounts/OverLoadMe.py')
-rw-r--r-- | module/plugins/accounts/OverLoadMe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/accounts/OverLoadMe.py b/module/plugins/accounts/OverLoadMe.py index 1c72f39bd..1f12fde83 100644 --- a/module/plugins/accounts/OverLoadMe.py +++ b/module/plugins/accounts/OverLoadMe.py @@ -47,5 +47,5 @@ class OverLoadMe(MultiAccount): data = json.loads(jsondata) - if data['err'] == 1: + if data['err'] is 1: self.fail_login() |