From 50557a9b3ee13915c5d080d2685c91f8f63eb088 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 22 Jan 2015 06:54:50 +0100 Subject: [PATCH] crashdialog: Remove Github from contact types. See #447. --- qutebrowser/misc/crashdialog.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/qutebrowser/misc/crashdialog.py b/qutebrowser/misc/crashdialog.py index 7ffc908ea..4e2420292 100644 --- a/qutebrowser/misc/crashdialog.py +++ b/qutebrowser/misc/crashdialog.py @@ -96,11 +96,10 @@ class _CrashDialog(QDialog): try: self._contact.setPlainText(state['general']['contact-info']) except KeyError: - self._contact.setPlaceholderText("Github username, mail or " - "IRC") + self._contact.setPlaceholderText("Mail or IRC nickname") except Exception: log.misc.exception("Failed to get contact information!") - self._contact.setPlaceholderText("Github username, mail or IRC") + self._contact.setPlaceholderText("Mail or IRC nickname") self._vbox.addWidget(self._contact, 2) self._vbox.addSpacing(15)