Fix indentation for Dictionary::ToString

fixes #10527
This commit is contained in:
Gunnar Beutner 2015-11-04 08:44:56 +01:00
parent 51f473d08a
commit a51bc4010a
1 changed files with 1 additions and 1 deletions

View File

@ -203,6 +203,6 @@ std::vector<String> Dictionary::GetKeys(void) const
String Dictionary::ToString(void) const
{
std::ostringstream msgbuf;
ConfigWriter::EmitScope(msgbuf, 0, const_cast<Dictionary *>(this));
ConfigWriter::EmitScope(msgbuf, 1, const_cast<Dictionary *>(this));
return msgbuf.str();
}