diff options
author | John Mandereau <john.mandereau@gmail.com> | 2009-02-04 09:29:36 +0100 |
---|---|---|
committer | John Mandereau <john.mandereau@gmail.com> | 2009-02-04 09:29:36 +0100 |
commit | bbe71ce79e9d57e7664671c769d3e152f06bc8bb (patch) | |
tree | f1503c99e1328d11109b5f3e8b77eba4dbf8d0eb /python/auxiliar | |
parent | 13603c808b8f6fb25395512c38f848f1c890c095 (diff) |
Fix broken link to Developers Resources page
Diffstat (limited to 'python/auxiliar')
-rw-r--r-- | python/auxiliar/postprocess_html.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |