Explorar el Código

Merge pull request #825 from dalf/text_query_fix

[fix] searching for "!google_images text" doesn't work
Adam Tauber hace 7 años
padre
commit
9d9a592266
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      searx/query.py

+ 1
- 1
searx/query.py Ver fichero

@@ -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: