Skip to content

Commit

Permalink
Use double-quotes in "object list"
Browse files Browse the repository at this point in the history
refs #7251
  • Loading branch information
gunnarbeutner committed Nov 3, 2014
1 parent 6085904 commit e4a1572
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 @@ -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;
}

Expand Down

0 comments on commit e4a1572

Please sign in to comment.