Fixed error with opening error.log that causes strange issues with greyed out fields.

This commit is contained in:
Joey Payne 2015-11-02 17:29:01 -07:00
commit 272e3ade14
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
'''Command line module for web2exe.'''
__version__ = "v0.2.7b"
__version__ = "v0.2.8b"
import ssl

View file

@ -34,7 +34,7 @@ def get_data_file_path(file_path):
def log(*args):
if DEBUG:
print(*args)
with open('error.log', 'a+') as f:
with open(get_data_file_path('files/error.log'), 'a+') as f:
f.write(', '.join(args))
f.write('\n')