removing ,w from filename

This commit is contained in:
Jonathan Shimwell 2022-03-10 21:08:46 +00:00 committed by GitHub
parent 698a15d7f9
commit e14de1600a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -577,7 +577,7 @@ void write_tallies()
return;
// Set filename for tallies_out
filename = fmt::format("{}tallies.out", settings::path_output, w);
filename = fmt::format("{}tallies.out", settings::path_output);
// Open the tallies.out file.
std::ofstream tallies_out;

View file

@ -23,7 +23,7 @@ void write_summary()
write_message("Writing summary.h5 file...", 5);
// Set filename for summary file
filename = fmt::format("{}summary.h5", settings::path_output, w);
filename = fmt::format("{}summary.h5", settings::path_output);
// Create a new file using default properties.
hid_t file = file_open(filename, 'w');