Skip to content

Commit

Permalink
Changed my mind, back to 'if'
Browse files Browse the repository at this point in the history
  • Loading branch information
mflierm committed Oct 10, 2024
1 parent e1f8f26 commit 23859be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amstrax/auto_processing/delete_live_stbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def main(args):
stbc_path = args.live_data_path
free_space = check_diskspace(stbc_path)

while free_space < args.min_free_diskspace:
if free_space < args.min_free_diskspace:
log.info(f"Free space in {stbc_path} is {free_space} bytes.\n"
"Deleting runs {old_runs['number']}, but first checking safety")

Expand Down

0 comments on commit 23859be

Please sign in to comment.