rename old_script -> old_scripts

This commit is contained in:
2025-08-19 14:15:15 +02:00
parent c6d486d0bd
commit ea5cdac7c0
7 changed files with 1 additions and 1 deletions

View File

@@ -118,7 +118,7 @@ async def main_old_script_loader(cfg: object, id: int, pool: object, script_name
try:
# Usa asyncio.subprocess per vero async
process = await asyncio.create_subprocess_exec(
'python3', f'old_script/{script_name}.py', temp_filename,
'python3', f'old_scripts/{script_name}.py', temp_filename,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)