Explorar el Código

fix config path

master
Andreas Demmelbauer hace 3 años
padre
commit
2dd24160a9
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      demotape.py

+ 3
- 1
demotape.py Ver fichero

@@ -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:


Cargando…
Cancelar
Guardar