Skip to content

Commit a35e705

Browse files
committed
Fix fallback value for output_filepath
Signed-off-by: Yadunund <[email protected]>
1 parent 8929233 commit a35e705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibpc_tester/ibpc_tester/ibpc_tester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def main(argv=sys.argv):
189189
output_filepath = (output_dir / output_filename).resolve()
190190
except Exception as e:
191191
print(f"Error creating filepath: {e}")
192-
output_filepath = filename
192+
output_filepath = output_filename
193193
node.get_logger().info(f"Submission results will be written to {output_filepath}.")
194194

195195
debug_cam_1 = None

0 commit comments

Comments
 (0)