Skip to content

Commit

Permalink
update checkpoint file localization
Browse files Browse the repository at this point in the history
  • Loading branch information
PetervanLunteren authored Oct 21, 2024
1 parent f6c403c commit b7e835e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EcoAssist_GUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -4178,7 +4178,7 @@ def check_checkpnt():
global loc_chkpnt_file
loc_chkpnt_files = []
for filename in os.listdir(var_choose_folder.get()):
if re.search('^checkpoint_\d+\.json$', filename):
if re.search('^md_checkpoint_\d+\.json$', filename):
loc_chkpnt_files.append(filename)
if len(loc_chkpnt_files) == 0:
mb.showinfo(["No checkpoint file found", "No se ha encontrado ningún archivo de puntos de control"][lang_idx],
Expand Down

0 comments on commit b7e835e

Please sign in to comment.