fix(xlsx): Fix for handle failed html parse

This commit is contained in:
Faris Ansari 2019-04-11 14:53:48 +05:30
parent 8c91e46563
commit 2677e54e9d

View file

@ -66,7 +66,7 @@ def handle_html(data):
value = obj.handle(h)
except Exception:
# unable to parse html, send it raw
return value
return data
value = ", ".join(value.split(' \n'))
value = " ".join(value.split('\n'))