tweak formatting of candidates listed for each team
Show the number of candidates and then cleanly show the email addresses separated by commas and without the Python formatting markup indicating that they are unicode strings. Change-Id: I6df888115ce556e2b029dcde0494a95a17d98abd Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
parent
e692cba581
commit
f568fac15b
@ -65,7 +65,8 @@ def collect_project_stats(basedir, verbose, projects):
|
||||
need_election.append(project)
|
||||
|
||||
if verbose:
|
||||
print("%-25s : %s" % (project, candidates))
|
||||
print("%-25s : (%d) %s" % (project, len(candidates),
|
||||
', '.join(candidates)))
|
||||
|
||||
|
||||
def main():
|
||||
|
Loading…
Reference in New Issue
Block a user