Move version info more to the top in logs.

This commit is contained in:
Florian Bruhin 2015-01-16 09:22:22 +01:00
parent aae33a0308
commit c98bfa9a9d

View File

@ -317,6 +317,7 @@ class ExceptionCrashDialog(_CrashDialog):
self._crash_info += [
("Exception", ''.join(traceback.format_exception(*self._exc))),
]
super()._gather_crash_info()
if self._chk_log.isChecked():
self._crash_info += [
("Commandline args", ' '.join(sys.argv[1:])),
@ -324,7 +325,6 @@ class ExceptionCrashDialog(_CrashDialog):
("Command history", '\n'.join(self._cmdhist)),
("Objects", self._objects),
]
super()._gather_crash_info()
if self._chk_log.isChecked():
try:
self._crash_info.append(