未验证 提交 03354771 编写于 作者: C chenjian 提交者: GitHub

fix init_vdl_config (#1030)

上级 2878151a
......@@ -31,7 +31,7 @@ CONFIG_PATH = os.path.join(CONF_HOME, 'config.json')
def init_vdl_config():
if not os.path.exists(CONF_HOME):
os.makedirs(CONF_HOME)
os.makedirs(CONF_HOME, exist_ok=True)
if not os.path.exists(CONFIG_PATH) or 0 == os.path.getsize(CONFIG_PATH):
with open(CONFIG_PATH, 'w') as fp:
fp.write(json.dumps(default_vdl_config))
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册