Skip to content

Commit f8018ce

Browse files
committed
fix string concatenation
1 parent e510016 commit f8018ce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_runs/test_run_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def _check_serialized_optimized_run(self, run_id):
6767
try:
6868
model_prime = openml.runs.initialize_model_from_trace(run_id, 0, 0)
6969
except openml.exceptions.OpenMLServerException as e:
70-
e.additional += '; run_id: ' + run_id
70+
e.additional += '; run_id: ' + str(run_id)
7171
raise e
7272

7373
run_prime = openml.runs.run_model_on_task(task, model_prime,

0 commit comments

Comments
 (0)