Version bump!

This commit is contained in:
Joey Payne 2015-11-11 17:30:13 -07:00
commit 022f84d45b

View file

@ -1,6 +1,6 @@
'''Command line module for web2exe.'''
__version__ = "v0.2.9b"
__version__ = "v0.3.0b"
import ssl
@ -966,6 +966,9 @@ class CommandBase(object):
batcontents = '{}\n{}'.format(env_vars, contents)
bat_file = utils.path_join(TEMP_DIR, '{}.bat'.format(self.project_name()))
self.logger.debug(batcontents)
with open(bat_file, 'w+') as f:
f.write(batcontents)
@ -984,8 +987,6 @@ class CommandBase(object):
if error:
f.write('\n\nErrors:\n{}\n'.format(error))
self.progress_text = 'Done executing script.'
else:
self.progress_text = '\nThe script {} does not exist. Not running.'.format(script)