summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-09-14 16:58:59 -0400
committerrsiddharth <s@ricketyspace.net>2020-09-14 16:58:59 -0400
commit33a9ac554710e056c8c0b0b12c4f6cf010e1aaf3 (patch)
treea6738a0cb4af855c3c9a10235179d1e357a681e7 /bin
parent6be9c4a23acb8b430fbd99fe6d90f55f6ff14fec (diff)
bin/html: fix markdown
Change `p` call to `err`
Diffstat (limited to 'bin')
-rw-r--r--bin/html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/html b/bin/html
index 8e0db29..d3935c7 100644
--- a/bin/html
+++ b/bin/html
@@ -131,7 +131,7 @@ def markdown(c):
r = mistune.markdown(c, False, parse_block_html=True, parse_inline_html=True)
except Exception as e:
- p('Markdown failed for {}'.format(c))
+ err('Markdown parsing failed: {}'.format(e))
return r