small bug fix
Marco Andronaco andronacomarco@gmail.com
Wed, 06 Jul 2022 23:37:10 +0200
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
Functions.py
→
Functions.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()