summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/configfile.cc2
1 files changed, 1 insertions, 1 deletions
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();