- Missing projects are now consistently reported as "(none)" in the
  summary chart and the projects command.

Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
Steve Rader 2011-01-03 22:04:10 -05:00 committed by Paul Beckingham
parent 6b18a2842f
commit 07755e2c56
2 changed files with 4 additions and 1 deletions

View file

@ -298,7 +298,7 @@ int handleProjects (std::string& outs)
foreach (i, unique)
{
int row = table.addRow ();
table.addCell (row, 0, i->first);
table.addCell (row, 0, (i->first == "" ? "(none)" : i->first));
table.addCell (row, 1, i->second);
table.addCell (row, 2, none[i->first]);
table.addCell (row, 3, low[i->first]);