update the rest of the code to support the new config format
[iron-blogger] / weekly-update.py
index 8b60e527541e4e2dd9d5a3462491d57a6038db87..eddb2c170499de152e80e45296eef551ac5ce683 100755 (executable)
@@ -32,7 +32,7 @@ punt = []
 with open('ledger', 'a') as f:
     f.write("\n")
     for (user, debt) in debts:
-        if debt < (FINE_SIZE * 6): continue
+        if debt <= (FINE_SIZE * 6): continue
         punt.append(user)
         f.write("""\
 %(date)s Punt

Benjamin Mako Hill || Want to submit a patch?