From a087ce173c19d51d5b94bec4f8af116dad51d7bc Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Tue, 14 Aug 2012 10:06:16 -0400 Subject: [PATCH] remove list_punted.py which is now rolled into the others --- list_punted.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 list_punted.py 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) - - -- 2.30.2