Skip to content

Commit

Permalink
Fix debug output to work around limitation of Python 3.9
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Jan 5, 2025
1 parent e796804 commit 0ad15c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rebench/denoise_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def restore_noise(denoise_result: DenoiseInitialSettings, show_warning, ui):
_add_denoise_options(cmd, restore)
cmd += ["restore"]

ui.debug_output_info(f"Denoise, restore settings: {" ".join(cmd)}\n")
ui.debug_output_info(f"Denoise, restore settings: {' '.join(cmd)}\n")
result, got_json, raw_output = _exec_denoise_and_parse_result(cmd)

restored = _process_denoise_result(
Expand Down

0 comments on commit 0ad15c1

Please sign in to comment.