From 1e4a25419e7ef1b4369e26b9d693cb5a98a6519c Mon Sep 17 00:00:00 2001 From: Joey Payne Date: Sat, 20 Dec 2014 13:59:23 +1300 Subject: [PATCH] Fixed an error with initialization of the command line app. --- command_line.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/command_line.py b/command_line.py index c988113..3bdb67b 100644 --- a/command_line.py +++ b/command_line.py @@ -174,6 +174,7 @@ class CommandBase(object): self._extract_error = '' self.original_packagejson = {} + def init(self): self.update_nw_versions(None) self.setup_nw_versions() @@ -677,6 +678,7 @@ if __name__ == '__main__': 'to web2exe'), prog='web2execmd') command_base = CommandBase() + command_base.init() parser.add_argument('project_dir', metavar='project_dir', help='The project directory.') parser.add_argument('--output-dir', dest='output_dir',