From 48c1da538a4eb3cf73836fc7692105e5ab99a8d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Nusser?= Date: Sat, 11 Apr 2020 18:57:00 +0200 Subject: Change config file to write in the format: = "". --- src/configfile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configfile.cc b/src/configfile.cc index 18934aa..db1316b 100644 --- a/src/configfile.cc +++ b/src/configfile.cc @@ -158,7 +158,7 @@ bool ConfigFile::save() for(const auto& value: values) { - current_file << value.first << ":" << value.second << std::endl; + current_file << value.first << " = " << "\"" << value.second << "\"" << std::endl; } current_file.close(); -- cgit v1.2.3