summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2015-01-22 06:54:50 +0100
committerFlorian Bruhin <git@the-compiler.org>2015-02-11 23:11:34 +0100
commit49943efa8727efef06e01be64952941d3d025935 (patch)
tree674a06aca6ca12fde245bb7dc189579796b5bf02
parentbfd2ef830ea974e8154e047c1f98242185e4a096 (diff)
downloadqutebrowser-49943efa8727efef06e01be64952941d3d025935.tar.gz
qutebrowser-49943efa8727efef06e01be64952941d3d025935.zip
crashdialog: Remove Github from contact types.
See #447.
-rw-r--r--qutebrowser/misc/crashdialog.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/qutebrowser/misc/crashdialog.py b/qutebrowser/misc/crashdialog.py
index 0992d06a0..fc4ed479f 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)