mirror of https://github.com/searxng/searxng.git
[fix] online_dictionary: regular expression
The query term of a engine-type `online_dictionary` can consist of more than one word. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
b5cceeb2f9
commit
480476fdf3
|
@ -9,7 +9,7 @@ import re
|
||||||
from searx.utils import is_valid_lang
|
from searx.utils import is_valid_lang
|
||||||
from .online import OnlineProcessor
|
from .online import OnlineProcessor
|
||||||
|
|
||||||
parser_re = re.compile('.*?([a-z]+)-([a-z]+) ([^ ]+)$', re.I)
|
parser_re = re.compile('.*?([a-z]+)-([a-z]+) (.+)$', re.I)
|
||||||
|
|
||||||
|
|
||||||
class OnlineDictionaryProcessor(OnlineProcessor):
|
class OnlineDictionaryProcessor(OnlineProcessor):
|
||||||
|
|
Loading…
Reference in New Issue