summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-05-14 20:39:42 -0400
committerrsiddharth <s@ricketyspace.net>2019-05-14 20:39:42 -0400
commitd4835aa205204767f76f6c8f8a731ada8ee622e5 (patch)
tree2871863b3c11b8df7d4345e325712a64cd6cb79b /bin
parent736c90e1616ec3c0834425d9e3a227f226e238a1 (diff)
bin/news: Update process.
* bin/news (process): Add html call.
Diffstat (limited to 'bin')
-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()