소스 검색

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:


불러오는 중...
취소
저장