Improve readability of rbt status output
Review Request #4183 — Created May 28, 2013 and submitted
Improve readability of rbt status output. Each review request output is now indented, causing the ids and draft indicators to line up.
Used rbt status, and verified proper formatting and improvment.
SM
-
This was strictly a whitespace change, so it's being hidden by RB. I went from: def output_request(self, request): print "r/%s - %s" % (request.id, request.summary) def output_draft(self, request, draft): print "* r/%s - %s" % (request.id, draft.summary) To: def output_request(self, request): print " r/%s - %s" % (request.id, request.summary) def output_draft(self, request, draft): print " * r/%s - %s" % (request.id, draft.summary) Note the changes to spacing at the start of each string being printed.