fix bug that only occurs on windows

This commit is contained in:
2023-06-07 11:54:38 +02:00
parent 7299250437
commit 7377625812
5 changed files with 11 additions and 3 deletions

View File

@@ -14,7 +14,11 @@ import multiprocessing
import json
engineList = os.listdir( 'bin/engines' );
engineList.pop( 0 )
counter = 0;
for element in engineList:
if ( element == '__pycache__' ):
engineList.pop( counter );
counter += 1;
engineInfo = {}