all repos — m12-patcher @ 4018905c03d0e1e7bf14476386dca000b33e3c6f

small bug fix
Marco Andronaco andronacomarco@gmail.com
Wed, 06 Jul 2022 23:37:10 +0200
commit

4018905c03d0e1e7bf14476386dca000b33e3c6f

parent

bdc5a2e0ea16893a72389ca8757b9dcf51630f99

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M Functions.pyFunctions.py

@@ -6,7 +6,7 @@ from shutil import copyfile

import os, subprocess, Constants def check_rom(filename): - if filename == '': + if not os.path.exists(filename): return False with open(filename, 'rb') as f: file_hash = md5()