From d283967f27d0e734580e6132c2223fc9db1dae92 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Mon, 20 Nov 2023 15:15:01 +0100 Subject: [PATCH] fixed: erroneous comma placement --- src/opm/input/eclipse/Schedule/Schedule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opm/input/eclipse/Schedule/Schedule.cpp b/src/opm/input/eclipse/Schedule/Schedule.cpp index 5d71d8dec..a70a9ee9f 100644 --- a/src/opm/input/eclipse/Schedule/Schedule.cpp +++ b/src/opm/input/eclipse/Schedule/Schedule.cpp @@ -846,7 +846,7 @@ void Schedule::iterateScheduleSection(std::size_t load_start, std::size_t load_e auto well2 = this->snapshots[reportStep].wells.get(well_name); if (well2.getConnections().empty() && status == Well::Status::OPEN) { if (location) { - auto msg = fmt::format("Problem with{}\n", + auto msg = fmt::format("Problem with {}\n" "In {} line{}\n" "Well {} has no connections to grid and will remain SHUT", location->keyword, location->filename, location->lineno, well_name); OpmLog::warning(msg);