fix unicode path issue #2269
This commit is contained in:
@@ -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?")
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user