ソースを参照

fix config path

master
Andreas Demmelbauer 3年前
コミット
2dd24160a9
1個のファイルの変更3行の追加1行の削除
  1. +3
    -1
      demotape.py

+ 3
- 1
demotape.py ファイルの表示

@@ -13,8 +13,10 @@ import asyncio
import concurrent.futures
import ntpath
import yaml
from pathlib import Path

with open(r'config.yaml') as file:
config_path = Path(__file__).parent / './config.yaml'
with config_path.open() as file:
config = yaml.load(file, Loader=yaml.FullLoader)

try:


読み込み中…
キャンセル
保存