mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-01 07:36:20 +00:00
Marked 2 strings as raw strings to suppress warnings
This commit is contained in:
parent
4fa7520598
commit
d5059979d5
@ -2089,7 +2089,7 @@ def extract_user_data_from_field(user, field):
|
|||||||
|
|
||||||
|
|
||||||
def extract_dynamic_field_from_filter(user, filtr):
|
def extract_dynamic_field_from_filter(user, filtr):
|
||||||
match = re.search("([a-zA-Z0-9-]+)=%s", filtr, re.IGNORECASE | re.UNICODE)
|
match = re.search(r"([a-zA-Z0-9-]+)=%s", filtr, re.IGNORECASE | re.UNICODE)
|
||||||
if match:
|
if match:
|
||||||
return match.group(1)
|
return match.group(1)
|
||||||
else:
|
else:
|
||||||
|
@ -19,5 +19,5 @@ import re
|
|||||||
|
|
||||||
|
|
||||||
def strip_whitespaces(text):
|
def strip_whitespaces(text):
|
||||||
return re.sub("(^[\s\u200B-\u200D\ufeff]+)|([\s\u200B-\u200D\ufeff]+$)","", text)
|
return re.sub(r"(^[\s\u200B-\u200D\ufeff]+)|([\s\u200B-\u200D\ufeff]+$)","", text)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user