Skip to content
Snippets Groups Projects
Commit 56718a54 authored by David Trattnig's avatar David Trattnig
Browse files

Safe text conversion.

parent 572ff2a8
No related branches found
No related tags found
No related merge requests found
...@@ -156,7 +156,7 @@ class SimpleUtil: ...@@ -156,7 +156,7 @@ class SimpleUtil:
(String): the striked text. (String): the striked text.
""" """
result = "" result = ""
for c in text: for c in str(text):
result += c + '\u0336' result += c + '\u0336'
return result return result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment