From c98bfa9a9d140ccaae71ae3b8a754e99b8cc9fdb Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 16 Jan 2015 09:22:22 +0100 Subject: [PATCH] Move version info more to the top in logs. --- qutebrowser/misc/crashdialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/misc/crashdialog.py b/qutebrowser/misc/crashdialog.py index d812e8f12..da533cd41 100644 --- a/qutebrowser/misc/crashdialog.py +++ b/qutebrowser/misc/crashdialog.py @@ -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(