def exportKeyStoreCb(self, path, filename):
if not filename:
return
config = configparser.RawConfigParser()
config.optionxform = str
App.get_running_app().keyStore.writeStore(config)
try:
with open(os.path.join(path, filename), 'w') as f:
config.write(f)
App.get_running_app().curSearchPath = path
except IOError as e:
displayError(e)
self.dismissPopup()
评论列表
文章目录