diff options
author | Gianluca Montecchi <gian@grys.it> | 2009-10-20 23:15:27 +0200 |
---|---|---|
committer | Gianluca Montecchi <gian@grys.it> | 2009-10-20 23:15:27 +0200 |
commit | e308d438dbe74db0d432abb82cf92b8717a21602 (patch) | |
tree | 445b48c3d37b30d709a6299ee31b425e9a055453 | |
parent | 70af336493d976ec064049d4e6d112c28b13d207 (diff) | |
download | bugseverywhere-e308d438dbe74db0d432abb82cf92b8717a21602.tar.gz |
Fixed the wrong index_header values
-rw-r--r-- | becommands/html.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/becommands/html.py b/becommands/html.py index 21e80c3..f36ba8d 100644 --- a/becommands/html.py +++ b/becommands/html.py @@ -55,7 +55,7 @@ def execute(args, manipulate_encodings=True): bd.load_all_bugs() html_gen = HTMLGen(bd, template=options.template, verbose=options.verbose, - title=options.title, ) + title=options.title, index_header=options.index_header ) html_gen.run(options.out_dir) def get_parser(): @@ -96,7 +96,7 @@ class HTMLGen (object): self.verbose = verbose self.title = title self.index_header = index_header - + if encoding != None: self.encoding = encoding else: @@ -246,6 +246,7 @@ class HTMLGen (object): filename = "index_inactive.html" else: raise Exception, "Unrecognized bug_type: '%s'" % bug_type + template_info = {'title':title, 'index_header':index_header, 'charset':self.encoding, |