Python now properly requires 2.7 and not 2.6 or 2.7. Removed duplicate output to log, now that we handle exceptions.

This commit is contained in:
Ebag333
2017-03-18 13:11:40 -07:00
parent fbcd8396db
commit 9c693cd7ed
2 changed files with 5 additions and 5 deletions

View File

@@ -90,6 +90,8 @@ class ErrorFrame(wx.Frame):
errorTextCtrl.AppendText('\n')
errorTextCtrl.AppendText("fs encoding: " + str(sys.getfilesystemencoding() or "Unknown"))
errorTextCtrl.AppendText('\n\n')
errorTextCtrl.AppendText("EXCEPTION: " + str(exception or "Unknown"))
errorTextCtrl.AppendText('\n\n')
if tb:
for line in tb:
errorTextCtrl.AppendText(line)