From 82cf7155cc7d0cf21022564910eeccaf85f6b1f8 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 20 Jun 2015 09:25:03 -0700 Subject: [PATCH] CLI2: Disagnostic formatting --- src/CLI2.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 0b265e2bc..9c5c6e81a 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -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 (); }