diff -r d2e979738700 -r ec153828ded2 PLCOpenEditor.py --- a/PLCOpenEditor.py Mon Aug 14 23:38:28 2017 +0300 +++ b/PLCOpenEditor.py Tue Aug 15 12:17:51 2017 +0300 @@ -476,16 +476,16 @@ if result: ignored_exceptions.append(ex) info = { - 'app-title' : wx.GetApp().GetAppName(), # app_title - 'app-version' : app_version, - 'wx-version' : wx.VERSION_STRING, - 'wx-platform' : wx.Platform, - 'python-version' : platform.python_version(), #sys.version.split()[0], - 'platform' : platform.platform(), - 'e-type' : e_type, - 'e-value' : e_value, - 'date' : time.ctime(), - 'cwd' : os.getcwd(), + 'app-title': wx.GetApp().GetAppName(), # app_title + 'app-version': app_version, + 'wx-version': wx.VERSION_STRING, + 'wx-platform': wx.Platform, + 'python-version': platform.python_version(), #sys.version.split()[0], + 'platform': platform.platform(), + 'e-type': e_type, + 'e-value': e_value, + 'date': time.ctime(), + 'cwd': os.getcwd(), } if e_traceback: info['traceback'] = ''.join(traceback.format_tb(e_traceback)) + '%s: %s' % (e_type, e_value)