Skip to content

Commit

Permalink
CLI: Fix object name in 'object list'
Browse files Browse the repository at this point in the history
refs #7251
  • Loading branch information
Michael Friedrich committed Oct 15, 2014
1 parent 153693d commit 32feea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli/objectlistcommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void ObjectListCommand::ReadObject(const String& message, std::map<String, int>&
else
msgbuf << "Object '";

msgbuf << "\x1b[1;37m" << name << "\x1b[0m" << "'"; //light gray
msgbuf << "\x1b[1;37m" << properties->Get("__name") << "\x1b[0m" << "'"; //light gray
msgbuf << " of type '" << "\x1b[1;34m" << type << "\x1b[0m" << "':\n"; //blue

msgbuf << FormatProperties(properties, debug_hints, 2);
Expand Down

0 comments on commit 32feea8

Please sign in to comment.