fixed the issue with the rsync code wanting a location on my system
[iron-blogger] / list_punted.py
1 #!/usr/bin/python
2 import yaml
3
4 f = open('bloggers.yml')
5 users = yaml.safe_load(f)
6
7 class User(object):
8     pass
9
10 for (un, rec) in users.items():
11     u = User()
12     u.username = un
13     u.end   = rec.get('end')
14     
15     if u.end:
16         print "%s (punted: %s)" % (u.username, u.end)
17
18

Benjamin Mako Hill || Want to submit a patch?