From: Ralf Jung Date: Fri, 29 Apr 2016 13:44:54 +0000 (+0200) Subject: fix pycco monkey-patching X-Git-Url: https://git.ralfj.de/rust-101.git/commitdiff_plain/a52087dc8f244861d144229b04e64f934ed1d03f fix pycco monkey-patching --- diff --git a/pycco-rs b/pycco-rs index fab890b..2e10184 100755 --- a/pycco-rs +++ b/pycco-rs @@ -27,6 +27,6 @@ html_src = html_src.replace(css_marker, css_marker+custom_css, 1) title_marker = '' html_src = html_src.replace(title_marker, title_marker + 'Rust-101: ', 1) -pycco.main.pycco_template = pycco.main.template(html_src) +pycco_resources.pycco_template = pycco_resources.template(html_src) pycco.main.main()