Browse Source

[fix] searching for "!google_images text" doesn't work (bang with underscore)

Alexandre Flament 7 years ago
parent
commit
448903cd4a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      searx/query.py

+ 1
- 1
searx/query.py View File

@@ -95,7 +95,7 @@ class RawTextQuery(object):
95 95
 
96 96
             # this force a engine or category
97 97
             if query_part[0] == '!' or query_part[0] == '?':
98
-                prefix = query_part[1:].replace('-', ' ')
98
+                prefix = query_part[1:].replace('-', ' ').replace('_', ' ')
99 99
 
100 100
                 # check if prefix is equal with engine shortcut
101 101
                 if prefix in engine_shortcuts: