~ubuntu-us-or/+junk/get-contributors

« back to all changes in this revision

Viewing changes to list-contributors.py

  • Committer: Thomas Mashos
  • Date: 2012-06-20 17:56:48 UTC
  • Revision ID: thomas@mashos.com-20120620175648-7wysloqbr3ok6jfg
Fixed output text

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
 
63
63
def get_loco_contributors():
64
64
    LOCOCONTRIBUTORS=[]
65
 
 
66
65
    for c in ALLCONTRIBUTORS:
67
66
        if c in ALLLOCOTEAM:
68
67
            LOCOCONTRIBUTORS.append(c)
77
76
print 
78
77
print "Total contributed:",len(ALLCONTRIBUTORS)
79
78
print LPTEAM,"team size:",len(ALLLOCOTEAM)
80
 
print LPTEAM,"team contributed:",len(LOCOCONTRIBUTORS)
81
 
print LPTEAM,"team contributed percent (vs self):",float(len(LOCOCONTRIBUTORS))/float(len(ALLLOCOTEAM))
82
 
print LPTEAM,"team contributed percent (vs all contributors):",float(len(LOCOCONTRIBUTORS))/float(len(ALLCONTRIBUTORS))
 
79
print LPTEAM,"team contributors:",len(LOCOCONTRIBUTORS)
 
80
print LPTEAM,"team contributors percent (vs self):",float(len(LOCOCONTRIBUTORS))/float(len(ALLLOCOTEAM))
 
81
print LPTEAM,"team contributors percent (vs all contributors):",float(len(LOCOCONTRIBUTORS))/float(len(ALLCONTRIBUTORS))
83
82