def printWhoList()

in makewholist.py [0:0]


def printWhoList(emeritus_members=''):
    if len(names) == 0 or len(groups) == 0:
        print "Names or groups not initialized, aborting"
        sys.exit(1)

    print ("Active Project Management Committee contains "
           "(in alphabetical order of their usernames):")

    print "{:.table-bordered}"
    print "| Username | Name |"
    print "|----------|------|"
    for pmc in groups['cloudstack-pmc']:
        if pmc not in emeritus_members.split(','):
            print "|%s|%s|" % (pmc, names[pmc])

    print ""
    print ""
    print ("Active list of committers "
           "(in alphabetical order of their usernames):")

    print "{:.table-bordered}"
    print "| Username | Name |"
    print "|----------|------|"
    for committer in groups['cloudstack']:
        if committer not in emeritus_members.split(','):
            print "|%s|%s|" % (committer, names[committer])