def load(self):
print("\nLoading root_ini from:\n", self.working_path)
try:
with open(self.working_path+'root_ini') as f:
self.root_ini = jload(f)
print("root_ini successfully loaded")
except:
print("root_ini not found, using default values")
self.root_ini = self.use_default_root_ini()
stdout.flush()
评论列表
文章目录