sort the teams in verbose output

Process the teams in sorted order so that the verbose output is easier
to scan for details.

Change-Id: I1fc93924733831033fcf97606eca4b8638fee646
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-07-31 13:48:22 -04:00 committed by Tony Breeds
parent 0a80dace83
commit e692cba581

View File

@ -41,7 +41,7 @@ def as_utctime(dt):
def collect_project_stats(basedir, verbose, projects):
global counts
for directory, dirnames, filenames in os.walk(basedir):
for directory, dirnames, filenames in sorted(os.walk(basedir)):
project = directory[len(basedir):]
if project == "TC":
continue