summaryrefslogtreecommitdiff
path: root/searx/engines/www500px.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/engines/www500px.py')
-rw-r--r--searx/engines/www500px.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/www500px.py b/searx/engines/www500px.py
index c98e19443..f1bc6c583 100644
--- a/searx/engines/www500px.py
+++ b/searx/engines/www500px.py
@@ -41,7 +41,7 @@ def response(resp):
results = []
dom = html.fromstring(resp.text)
- regex = re.compile('3\.jpg.*$')
+ regex = re.compile(r'3\.jpg.*$')
# parse results
for result in dom.xpath('//div[@class="photo"]'):