From: John Mandereau Date: Wed, 4 Feb 2009 08:29:36 +0000 (+0100) Subject: Fix broken link to Developers Resources page X-Git-Tag: release/2.13.0-0~41^2~5 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=bbe71ce79e9d57e7664671c769d3e152f06bc8bb;p=lilypond.git Fix broken link to Developers Resources page --- diff --git a/python/auxiliar/postprocess_html.py b/python/auxiliar/postprocess_html.py index 2f8b532321..0da36236f5 100644 --- a/python/auxiliar/postprocess_html.py +++ b/python/auxiliar/postprocess_html.py @@ -123,7 +123,7 @@ def hack_urls (s, prefix): rel_link = re.sub (r'out-www/.*$', '', prefix) rel_link = re.sub (r'[^/]*/', '../', rel_link) if 'input/regression' in prefix: - indexfile = "Documentation/devel" + indexfile = "Documentation/devel/index" else: indexfile = "index" s = docindex_link_re.sub ('href="' + rel_link + indexfile + '.html\"', s)