perbaikan pesan error pada fungsi pembersihan HTML

1 parent 0796cba7
...@@ -968,7 +968,7 @@ class BaseView(object): ...@@ -968,7 +968,7 @@ class BaseView(object):
try: try:
values[k] = lxml.html.fromstring(v).text_content() values[k] = lxml.html.fromstring(v).text_content()
except Exception as e: except Exception as e:
msg = f"Error cleaning HTML for key {k}: {e}" msg = f"Error cleaning HTML for key {k}: {v} is {e}"
log.error(msg) log.error(msg)
raise Exception(msg) from e raise Exception(msg) from e
...@@ -1024,7 +1024,7 @@ class BaseView(object): ...@@ -1024,7 +1024,7 @@ class BaseView(object):
try: try:
values[k] = lxml.html.fromstring(v).text_content() values[k] = lxml.html.fromstring(v).text_content()
except Exception as e: except Exception as e:
msg = f"Error cleaning HTML for key {k}: {e}" msg = f"Error cleaning HTML for key {k}: {v} is {e}"
log.error(msg) log.error(msg)
raise Exception(msg) from e raise Exception(msg) from e
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!