diff options
author | Adam Tauber <asciimoo@gmail.com> | 2015-01-12 14:14:40 +0100 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-12 14:14:40 +0100 |
commit | b47b8cc2c6cd3c746807a2fe955e956d43556081 (patch) | |
tree | a855b15018b62d130aef4958b61e916d84b9e708 /searx/search.py | |
parent | d7ea44ab8dd7f728ce19589b48618d7eb1669170 (diff) | |
parent | 96c4d52eef7de13f6fa1d6e0ae651c50c3bba515 (diff) | |
download | searxng-b47b8cc2c6cd3c746807a2fe955e956d43556081.tar.gz searxng-b47b8cc2c6cd3c746807a2fe955e956d43556081.zip |
Merge pull request #166 from Cqoicebordel/non-exclusif-bang
Add non exclusif bang
Diffstat (limited to 'searx/search.py')
-rw-r--r-- | searx/search.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/search.py b/searx/search.py index f58b6167c..427da3bab 100644 --- a/searx/search.py +++ b/searx/search.py @@ -373,7 +373,7 @@ class Search(object): # if engines are calculated from query, # set categories by using that informations - if self.engines: + if self.engines and query_obj.specific: self.categories = list(set(engine['category'] for engine in self.engines)) |