From 129990857a689b3f35dd3c4c4f13ec315f71a59d Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 5 Jan 2016 07:07:45 +0100 Subject: [PATCH] Point out crash reports are currently public. See #481. --- qutebrowser/misc/crashdialog.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qutebrowser/misc/crashdialog.py b/qutebrowser/misc/crashdialog.py index 6d7c58e1b..6296b190e 100644 --- a/qutebrowser/misc/crashdialog.py +++ b/qutebrowser/misc/crashdialog.py @@ -220,8 +220,9 @@ class _CrashDialog(QDialog): def _init_info_text(self): """Add an info text encouraging the user to report crashes.""" info_label = QLabel("
Note that without your help, I can't fix " - "the bug you encountered.
I read and respond " - "to all crash reports!
", wordWrap=True) + "the bug you encountered.
Crash reports are " + "currently publicly accessible.", + wordWrap=True) self._vbox.addWidget(info_label) def _gather_crash_info(self):