Fix handling of unicode strings in dialog renerer
parent
4c6b57c5c5
commit
dd9ffbac8f
|
@ -75,8 +75,7 @@ class MustacheDialogRenderer(object):
|
|||
else:
|
||||
index %= len(template_functions)
|
||||
line = template_functions[index]
|
||||
for k, v in context.items():
|
||||
line = line.replace('{{' + str(k) + '}}', str(v))
|
||||
line = line.replace('{{', '{').replace('}}', '}').format(**context)
|
||||
return line
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue