diff --git a/command_line.py b/command_line.py index c514c05..abe1a46 100644 --- a/command_line.py +++ b/command_line.py @@ -1,6 +1,6 @@ '''Command line module for web2exe.''' -__version__ = "v0.2.7b" +__version__ = "v0.2.8b" import ssl diff --git a/utils.py b/utils.py index 86b0504..a59dc5e 100644 --- a/utils.py +++ b/utils.py @@ -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')