Draft: Fixed problem with french translation

This commit is contained in:
Yorik van Havre
2018-01-05 20:00:32 -02:00
parent 065be5bb77
commit 9e01b26038

View File

@@ -118,6 +118,8 @@ class todo:
todo.itinerary = []
if todo.commitlist:
for name,func in todo.commitlist:
if isinstance(name,unicode):
name = name.encode("utf8")
#print("debug: committing ",str(name))
try:
name = str(name)