summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2016-01-05 07:07:45 +0100
committerFlorian Bruhin <git@the-compiler.org>2016-01-05 07:07:45 +0100
commit129990857a689b3f35dd3c4c4f13ec315f71a59d (patch)
tree397c2b1b5e54387956a798d10f829532bbf2fd87
parent5ff37c482f350c608230fd08c30909d5c8d9d73f (diff)
downloadqutebrowser-129990857a689b3f35dd3c4c4f13ec315f71a59d.tar.gz
qutebrowser-129990857a689b3f35dd3c4c4f13ec315f71a59d.zip
Point out crash reports are currently public.
See #481.
-rw-r--r--qutebrowser/misc/crashdialog.py5
1 files 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("<br/><b>Note that without your help, I can't fix "
- "the bug you encountered.<br/>I read and respond "
- "to all crash reports!</b>", wordWrap=True)
+ "the bug you encountered.<br/> Crash reports are "
+ "currently publicly accessible.</b>",
+ wordWrap=True)
self._vbox.addWidget(info_label)
def _gather_crash_info(self):