Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts/genpolist.py
blob: 9f23272cc5e63f252503c92ed52ce0756153b3d8 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python

import os

activities = ['../' + rep for rep in os.listdir('../') if rep.endswith('activity')]
for activity in activities:
    print activity
    for f in sorted(os.listdir(os.path.join(activity,'po'))):
        print 'po/' + f