remove list_punted.py which is now rolled into the others
authorBenjamin Mako Hill <mako@atdot.cc>
Tue, 14 Aug 2012 14:06:16 +0000 (10:06 -0400)
committerBenjamin Mako Hill <mako@atdot.cc>
Tue, 14 Aug 2012 14:06:16 +0000 (10:06 -0400)
list_punted.py [deleted file]

diff --git a/list_punted.py b/list_punted.py
deleted file mode 100755 (executable)
index 56e03be..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/python
-import yaml
-
-f = open('bloggers.yml')
-users = yaml.safe_load(f)
-
-class User(object):
-    pass
-
-for (un, rec) in users.items():
-    u = User()
-    u.username = un
-    u.end   = rec.get('end')
-    
-    if u.end:
-        print "%s (punted: %s)" % (u.username, u.end)
-
-

Benjamin Mako Hill || Want to submit a patch?