Skip to content

Commit

Permalink
bug: fix removal of the temp file
Browse files Browse the repository at this point in the history
  • Loading branch information
fedorov committed May 3, 2024
1 parent 92e9be2 commit fb2b595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion idc_index/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ def _s5cmd_run(
if line.startswith("ERROR"):
runtime_errors.append(line)

Path.unlink(stderr_log_file.name)
Path(stderr_log_file.name).unlink()

if len(runtime_errors) > 0:
logger.error(
Expand Down

0 comments on commit fb2b595

Please sign in to comment.