Skip to content

Commit

Permalink
Fix unicode issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarisari committed Dec 2, 2019
1 parent 29cf141 commit b0046c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dk/html/html.py
Expand Up @@ -315,7 +315,7 @@ def __str__(self):
res.append(item.encode("u8"))
else:
# res.append(u8(item))
res.append(item)
res.append(str(item))
except TypeError:
# generator found for some reason
six.print_(type(item), dir(item))
Expand Down

0 comments on commit b0046c6

Please sign in to comment.