From 706bf6cb37885ca97a49f772de00b535cf3dbf9f Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 4 May 2016 20:28:13 +0200 Subject: [PATCH] fix pycco-rs --- pycco-rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pycco-rs b/pycco-rs index 2e10184..b1d7f43 100755 --- a/pycco-rs +++ b/pycco-rs @@ -22,11 +22,14 @@ html_src = pycco_resources.html css_marker = '' custom_css = '' +assert html_src.count(css_marker) == 1 html_src = html_src.replace(css_marker, css_marker+custom_css, 1) title_marker = '' +assert html_src.count(title_marker) == 1 html_src = html_src.replace(title_marker, title_marker + 'Rust-101: ', 1) -pycco_resources.pycco_template = pycco_resources.template(html_src) +pycco_resources.html = html_src +pycco.main.pycco_template = pycco_resources.pycco_template = pycco_resources.template(pycco_resources.html) pycco.main.main() -- 2.30.2