From: Benjamin Mako Hill Date: Tue, 14 Aug 2012 14:06:16 +0000 (-0400) Subject: remove list_punted.py which is now rolled into the others X-Git-Url: https://projects.mako.cc/source/iron-blogger/commitdiff_plain/a087ce173c19d51d5b94bec4f8af116dad51d7bc remove list_punted.py which is now rolled into the others --- diff --git a/list_punted.py b/list_punted.py deleted file mode 100755 index 56e03be..0000000 --- a/list_punted.py +++ /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) - -