Skip to content

Commit 429f451

Browse files
committed
fix error message
1 parent 11089bd commit 429f451

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: ' + str(run_id)
70+
e.additional = str(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)