Use double-quotes in "object list"

refs #7251
This commit is contained in:
Gunnar Beutner 2014-11-03 12:39:59 +01:00
parent 60859043c8
commit e4a1572c9b
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ void ObjectListCommand::PrintValue(std::ostream& fp, const Value& val)
}
if (val.IsString()) {
fp << "'" << Convert::ToString(val) << "'";
fp << "\"" << Convert::ToString(val) << "\"";
return;
}