From: Mathieu Clabaut Date: Mon, 12 Jul 2010 14:32:01 +0000 (+0200) Subject: Exception when doing 'be html -e' X-Git-Tag: 1.0.0~23^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1c904b36abdec26b72d32ad7bc1e848c4064c21b;p=be.git Exception when doing 'be html -e' 'html_gen' was referenced before assignment. --- diff --git a/libbe/command/html.py b/libbe/command/html.py index e6c4c8c..f4273e9 100644 --- a/libbe/command/html.py +++ b/libbe/command/html.py @@ -104,9 +104,6 @@ class HTML (libbe.command.Command): ]) def _run(self, **params): - if params['export-template'] == True: - html_gen.write_default_template(params['export-template-dir']) - return 0 bugdir = self._get_bugdir() bugdir.load_all_bugs() html_gen = HTMLGen(bugdir, @@ -116,7 +113,10 @@ class HTML (libbe.command.Command): min_id_length=params['min-id-length'], verbose=params['verbose'], stdout=self.stdout) - html_gen.run(params['output']) + if params['export-template'] == True: + html_gen.write_default_template(params['export-template-dir']) + else: + html_gen.run(params['output']) return 0 def _long_help(self):