diff --git a/changedetectionio/html_tools.py b/changedetectionio/html_tools.py
index e9e0023f..a851a4d6 100644
--- a/changedetectionio/html_tools.py
+++ b/changedetectionio/html_tools.py
@@ -52,8 +52,15 @@ def xpath_filter(xpath_filter, html_content):
if len(html_content) > 0 and len(r) == 0:
raise FilterNotFoundInResponse(xpath_filter)
- for item in r:
- html_block += etree.tostring(item, pretty_print=True).decode('utf-8') + "
"
+ #@note: //title/text() wont work where