Skip to content

Commit

Permalink
T6166: Tech support generation error for custom output location
Browse files Browse the repository at this point in the history
  • Loading branch information
HollyGurza committed Apr 4, 2024
1 parent 8205e3c commit bec2380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/op_mode/generate_tech-support_archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def __generate_main_archive_file(archive_file: str, tmp_dir_path: str) -> None:
# Temporary directory creation
tmp_dir_path = f'{tmp_path}/drops-debug_{time_now}'
tmp_dir: Path = Path(tmp_dir_path)
tmp_dir.mkdir()
tmp_dir.mkdir(parents=True)

report_file: Path = Path(f'{tmp_dir_path}/show_tech-support_report.txt')
report_file.touch()
Expand Down

0 comments on commit bec2380

Please sign in to comment.