From: Ralf Jung Date: Sat, 22 Aug 2015 19:42:40 +0000 (+0200) Subject: fix the patching monkeys X-Git-Url: https://git.ralfj.de/rust-101.git/commitdiff_plain/68122e49effdf4d4210ddc0ebec69af88b50812a fix the patching monkeys --- diff --git a/pycco-rs b/pycco-rs index 072dd2e..2dd50e7 100755 --- a/pycco-rs +++ b/pycco-rs @@ -22,11 +22,11 @@ html_src = pycco_resources.html css_marker = '' custom_css = '' -patched_html = html_src.replace(css_marker, css_marker+custom_css, 1) +html_src = html_src.replace(css_marker, css_marker+custom_css, 1) title_marker = '' -patched_html = html_src.replace(title_marker, title_marker + 'Rust-101: ', 1) +html_src = html_src.replace(title_marker, title_marker + 'Rust-101: ', 1) -pycco.main.pycco_template = pycco.main.template(patched_html) +pycco.main.pycco_template = pycco.main.template(html_src) pycco.main.main()