Merge pull request #1253 from forslund/bugfix/unicode-encoded-dialogs
Fix handling of unicode strings in dialog rendererpull/1257/head^2
commit
ec1fdf928d
|
@ -76,8 +76,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