Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBelthle committed Mar 6, 2025
1 parent 4359b4b commit bf82601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/antares/craft/service/local_services/services/study.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def _build_timeseries(number_of_years: int, areas_dict: dict[str, Area], seed: i
f"Thermal cluster ts-generation advancement {round(generation_performed * 100 / total_generations, 1)} %"
)
except Exception as e:
e.args = f"Area {area_id}, cluster {thermal.id}: " + e.args[0]
e.args = tuple([f"Area {area_id}, cluster {thermal.id}: {e.args[0]}"])
raise


Expand Down

0 comments on commit bf82601

Please sign in to comment.