Skip to content

Commit

Permalink
Fix the initialization of time units when -time_file is used
Browse files Browse the repository at this point in the history
  • Loading branch information
ckhroulev committed Sep 20, 2021
1 parent 9d5248f commit 8437437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/Time.cc
Expand Up @@ -747,7 +747,7 @@ void Time::init_from_file(MPI_Comm com,
time_name,
"irrelevant (not used)",
stop_on_error);
m_time_units = units::Unit(m_unit_system, "seconds since" + date_string);
m_time_units = units::Unit(m_unit_system, "seconds since " + date_string);
}

// Read time information from the file.
Expand Down

0 comments on commit 8437437

Please sign in to comment.