summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/news3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/news b/bin/news
index e0ca882..9d52bd9 100644
--- a/bin/news
+++ b/bin/news
@@ -108,10 +108,13 @@ def process(f):
d = date(c)
c = content(c)
+ h = html(t, d, c)
+
def run():
for f in files():
process(f)
+
if __name__ == "__main__":
run()