Cli: Fix missing single quote in 'object list' output

fixes #7584
This commit is contained in:
Michael Friedrich 2014-11-05 18:23:40 +01:00
parent 29ee836b58
commit 5b5f92e57b
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ void ObjectListCommand::PrintObject(std::ostream& fp, bool& first, const String&
Dictionary::Ptr debug_hints = object->Get("debug_hints"); Dictionary::Ptr debug_hints = object->Get("debug_hints");
fp << "Object " << ConsoleColorTag(Console_ForegroundBlue | Console_Bold) << internal_name << ConsoleColorTag(Console_Normal) << "'"; fp << "Object '" << ConsoleColorTag(Console_ForegroundBlue | Console_Bold) << internal_name << ConsoleColorTag(Console_Normal) << "'";
fp << " of type '" << ConsoleColorTag(Console_ForegroundMagenta | Console_Bold) << type << ConsoleColorTag(Console_Normal) << "':\n"; fp << " of type '" << ConsoleColorTag(Console_ForegroundMagenta | Console_Bold) << type << ConsoleColorTag(Console_Normal) << "':\n";
PrintProperties(fp, properties, debug_hints, 2); PrintProperties(fp, properties, debug_hints, 2);