Skip to content

Commit

Permalink
Merge branch 'release/8.8.x' of https://github.com/AntaresSimulatorTe…
Browse files Browse the repository at this point in the history
…am/Antares_Simulator into release/8.8.x
  • Loading branch information
payetvin committed Sep 9, 2024
2 parents e32af00 + 3d183ed commit dc309fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libs/antares/study/load.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,11 @@ void Study::parameterFiller(const StudyLoadOptions& options)
{
// We have time-series to import
StudyVersion studyVersion;
if (parameters.exportTimeSeriesInInput && studyVersion.isStudyLatestVersion(folder.c_str()))
if (parameters.exportTimeSeriesInInput && !studyVersion.isStudyLatestVersion(folder.c_str()))
{
logs.info() << "Stochastic TS stored in input parametrized."
" Disabling Store in input because study is not at latest version"
"Prevents writing data in unsupported format at the study version";
" This Prevents writing data in unsupported format at the study version";
parameters.exportTimeSeriesInInput = 0;
}
}
Expand Down

0 comments on commit dc309fe

Please sign in to comment.