Improve history formatting in crashdialog
This commit is contained in:
parent
bad349aacf
commit
01d2654c23
@ -512,7 +512,7 @@ class FatalCrashDialog(_CrashDialog):
|
|||||||
try:
|
try:
|
||||||
history = objreg.get('web-history').get_recent()
|
history = objreg.get('web-history').get_recent()
|
||||||
self._crash_info.append(("History",
|
self._crash_info.append(("History",
|
||||||
''.join(e[0] for e in history)))
|
'\n'.join(str(e) for e in history)))
|
||||||
except Exception:
|
except Exception:
|
||||||
self._crash_info.append(("History", traceback.format_exc()))
|
self._crash_info.append(("History", traceback.format_exc()))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user