From 3f7057dabf71bd390171e66729f5798758ca8f03 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 22 Feb 2010 17:22:34 -0500 Subject: Fix relative links from bug pages in `be html`. Introduced by bugs/XXX.html -> bugs/XXX/index.html in wking@drexel.edu-20100220181238-j5ecst02y0k9ioo9 --- libbe/command/html.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libbe') diff --git a/libbe/command/html.py b/libbe/command/html.py index d26faf8..c9f89f3 100644 --- a/libbe/command/html.py +++ b/libbe/command/html.py @@ -168,9 +168,9 @@ class HTMLGen (object): self._write_css_file() for b in bugs: if b.active: - up_link = '../index.html' + up_link = '../../index.html' else: - up_link = '../index_inactive.html' + up_link = '../../index_inactive.html' self._write_bug_file(b, up_link) self._write_index_file( bugs_active, title=self.title, @@ -642,7 +642,7 @@ class HTMLGen (object): %(title)s - + -- cgit