diff --git a/src/KIM/kim_query.cpp b/src/KIM/kim_query.cpp index 1e699e74b0..cfb26c4d5e 100644 --- a/src/KIM/kim_query.cpp +++ b/src/KIM/kim_query.cpp @@ -305,7 +305,9 @@ void KimQuery::echo_var_assign(std::string const & name, { if (comm->me == 0) { std::string mesg; - mesg = name + " = " + value + "\n"; + mesg = "#=== BEGIN kim_query =========================================\n"; + mesg += "variable " + name + " string " + value + "\n"; + mesg += "#=== END kim_query ===========================================\n"; input->write_echo(mesg.c_str()); } }