summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-10-14 22:23:03 +0200
committerFlorian Bruhin <git@the-compiler.org>2017-10-14 22:23:03 +0200
commitbad349aacfaae81184ccc2f0a84e147cbdcf9b37 (patch)
tree6dfac010f06e9d4bee82f77054d3e4823122389e
parent5dacf1431f4d3f15afc232938b5a7feea71e5b33 (diff)
downloadqutebrowser-bad349aacfaae81184ccc2f0a84e147cbdcf9b37.tar.gz
qutebrowser-bad349aacfaae81184ccc2f0a84e147cbdcf9b37.zip
Fix getting history in crash dialog
-rw-r--r--qutebrowser/misc/crashdialog.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/qutebrowser/misc/crashdialog.py b/qutebrowser/misc/crashdialog.py
index a4fcf8435..36ed82da5 100644
--- a/qutebrowser/misc/crashdialog.py
+++ b/qutebrowser/misc/crashdialog.py
@@ -511,7 +511,8 @@ class FatalCrashDialog(_CrashDialog):
if self._chk_history.isChecked():
try:
history = objreg.get('web-history').get_recent()
- self._crash_info.append(("History", ''.join(history)))
+ self._crash_info.append(("History",
+ ''.join(e[0] for e in history)))
except Exception:
self._crash_info.append(("History", traceback.format_exc()))