scripts: fix vpc_parser errror

This commit is contained in:
nillerusr
2023-05-23 23:23:12 +00:00
parent ed901ead1a
commit 8b1be47f4d
2 changed files with 5 additions and 2 deletions

View File

@@ -90,6 +90,9 @@ def fix_dos_path( path ):
if find_path == '': find_path = './'
else: find_path += '/'
if not os.path.exists(find_path):
return find_path+filename
dirlist = os.listdir(find_path)
for file in dirlist:
if file == filename: