]> git.mjollnir.org Git - cil.git/commitdiff
Make summary nicer
authorAndrew Chilton <andychilton@gmail.com>
Thu, 17 Dec 2009 04:51:44 +0000 (17:51 +1300)
committerAndrew Chilton <andychilton@gmail.com>
Thu, 17 Dec 2009 04:51:44 +0000 (17:51 +1300)
lib/CIL/Utils.pm

index 6758fff991dec58cb4f654bc7af393053729b722..a00608e38342b79fdfed0b5894060ca29346ceb0 100644 (file)
@@ -482,9 +482,9 @@ sub display_issue_summary {
     my ($class, $issue) = @_;
 
     my $msg = $issue->name();
-    $msg .= "\t";
+    $msg .= "   ";
     $msg .= $issue->Status();
-    $msg .= "\t";
+    $msg .= (' ' x ( 13 - length $issue->Status() ));
     $msg .= $issue->Summary();
 
     $class->msg($msg);