diff options
| author | dalf <alex@al-f.net> | 2015-02-12 14:50:41 +0100 |
|---|---|---|
| committer | dalf <alex@al-f.net> | 2015-02-12 14:50:41 +0100 |
| commit | 9d537c0bad5b68f9c83ea4ac026d22a27264b8dd (patch) | |
| tree | a636b41d9ba87fb854fc2836cec2cbec02f7a370 /searx | |
| parent | c4dd7c3a549e238c82a3274bb66ba17386076a10 (diff) | |
[fix] kickass tests
Diffstat (limited to 'searx')
| -rw-r--r-- | searx/engines/kickass.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/kickass.py b/searx/engines/kickass.py index 8b7e24579..4e5a64350 100644 --- a/searx/engines/kickass.py +++ b/searx/engines/kickass.py @@ -47,7 +47,7 @@ def response(resp): # check if redirect comparing to the True value, # because resp can be a Mock object, and any attribut name returns something. - if resp.is_redirect == True: + if resp.is_redirect is True: return results dom = html.fromstring(resp.text) |