aboutsummaryrefslogtreecommitdiff
path: root/newspipe/lib
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/lib')
-rw-r--r--newspipe/lib/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/lib/utils.py b/newspipe/lib/utils.py
index 7e6f3cf4..beef75ac 100644
--- a/newspipe/lib/utils.py
+++ b/newspipe/lib/utils.py
@@ -82,7 +82,7 @@ def clear_string(data):
and consecutive white spaces (more that one).
"""
p = re.compile("<[^>]+>") # HTML tags
- q = re.compile("\s") # consecutive white spaces
+ q = re.compile(r"\s") # consecutive white spaces
return p.sub("", q.sub(" ", data))
bgstack15