CLI2: Disagnostic formatting

This commit is contained in:
Paul Beckingham 2015-06-20 09:25:03 -07:00
parent d6eae96689
commit 82cf7155cc

View file

@ -792,6 +792,8 @@ const std::string CLI2::dump (const std::string& title) const
else
out << colorArgs.colorize (format ("{1}", range.first)) << " ";
}
out << "\n";
}
if (_uuid_list.size ())
@ -799,9 +801,10 @@ const std::string CLI2::dump (const std::string& title) const
out << " _uuid_list\n ";
for (auto& uuid : _uuid_list)
out << colorArgs.colorize (uuid) << " ";
out << "\n";
}
out << "\n";
return out.str ();
}