From: W. Trevor King Date: Mon, 22 Feb 2010 22:22:34 +0000 (-0500) Subject: Fix relative links from bug pages in `be html`. X-Git-Tag: 1.0.0~59^2~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3f7057dabf71bd390171e66729f5798758ca8f03;p=be.git Fix relative links from bug pages in `be html`. Introduced by bugs/XXX.html -> bugs/XXX/index.html in wking@drexel.edu-20100220181238-j5ecst02y0k9ioo9 --- 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 - +