Skip to content

Commit 022f84d

Browse files
committed
Version bump!
1 parent c9bb9dd commit 022f84d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

command_line.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'''Command line module for web2exe.'''
22

3-
__version__ = "v0.2.9b"
3+
__version__ = "v0.3.0b"
44

55
import ssl
66

@@ -966,6 +966,9 @@ def run_script(self, script):
966966
batcontents = '{}\n{}'.format(env_vars, contents)
967967

968968
bat_file = utils.path_join(TEMP_DIR, '{}.bat'.format(self.project_name()))
969+
970+
self.logger.debug(batcontents)
971+
969972
with open(bat_file, 'w+') as f:
970973
f.write(batcontents)
971974

@@ -984,8 +987,6 @@ def run_script(self, script):
984987
if error:
985988
f.write('\n\nErrors:\n{}\n'.format(error))
986989

987-
988-
989990
self.progress_text = 'Done executing script.'
990991
else:
991992
self.progress_text = '\nThe script {} does not exist. Not running.'.format(script)

0 commit comments

Comments
 (0)