diff options
author | Adam Tauber <asciimoo@gmail.com> | 2016-07-18 22:27:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-18 22:27:17 +0200 |
commit | aa09f963eb8220f866334779f61741da8926fcf2 (patch) | |
tree | 37b9c3658374d6b8499be7713c8dc52c66e0be72 /searx/results.py | |
parent | 21c5fb1c4514444a7c4fdecd84874f2b7c367f38 (diff) | |
parent | b3ab221b9808ba2b7b01d417210af9b9527e661c (diff) | |
download | searxng-aa09f963eb8220f866334779f61741da8926fcf2.tar.gz searxng-aa09f963eb8220f866334779f61741da8926fcf2.zip |
Merge pull request #621 from stepshal/anomalous-backslash-in-string
Fix anomalous backslash in string
Diffstat (limited to 'searx/results.py')
-rw-r--r-- | searx/results.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/results.py b/searx/results.py index c2c25b345..1fbbadc38 100644 --- a/searx/results.py +++ b/searx/results.py @@ -5,7 +5,7 @@ from threading import RLock from urlparse import urlparse, unquote from searx.engines import engines -CONTENT_LEN_IGNORED_CHARS_REGEX = re.compile('[,;:!?\./\\\\ ()-_]', re.M | re.U) +CONTENT_LEN_IGNORED_CHARS_REGEX = re.compile(r'[,;:!?\./\\\\ ()-_]', re.M | re.U) WHITESPACE_REGEX = re.compile('( |\t|\n)+', re.M | re.U) |