1
0

fix unicode path issue #2269

This commit is contained in:
ThomasV
2017-07-14 12:53:35 +02:00
parent 37143fd628
commit 125247df81
3 changed files with 13 additions and 6 deletions

View File

@@ -73,7 +73,7 @@ class BaseWizard(object):
def new(self):
name = os.path.basename(self.storage.path)
title = _("Create '%s'"%name)
title = _("Create") + ' ' + name.decode('utf8')
message = '\n'.join([
_("What kind of wallet do you want to create?")
])