Skip to content

Commit

Permalink
Dry run support
Browse files Browse the repository at this point in the history
  • Loading branch information
maouw committed Sep 28, 2023
1 parent 5ebd810 commit 5474a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyakvnc/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def create_node_signal_handler(signal_number, frame):
sbatch_command = SbatchCommand(sbatch_options=sbatch_opts)

if dry_run:
print(f"Would have launched sbatch process with command list:\n\t{sbatch_command.command_list}")
print(f"Would have launched sbatch process with command:\n\t{' '.join(sbatch_command.command_list)}")
exit(0)

job_id = None
Expand Down

0 comments on commit 5474a34

Please sign in to comment.