summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2016-07-27 12:13:22 +0200
committerFlorian Bruhin <git@the-compiler.org>2016-07-27 12:13:45 +0200
commit01de52c23a512b46f2e1ff95068127092858d55f (patch)
treef2990d8c8004558ca158cc720c30f3b5bc7f1873
parenta84807ed05115fb690f300ab77f1742f577c907c (diff)
downloadqutebrowser-01de52c23a512b46f2e1ff95068127092858d55f.tar.gz
qutebrowser-01de52c23a512b46f2e1ff95068127092858d55f.zip
Improve error message on OS X without QtWebEngine
-rw-r--r--qutebrowser/misc/earlyinit.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/qutebrowser/misc/earlyinit.py b/qutebrowser/misc/earlyinit.py
index c53492360..36a93786a 100644
--- a/qutebrowser/misc/earlyinit.py
+++ b/qutebrowser/misc/earlyinit.py
@@ -59,9 +59,13 @@ def _missing_str(name, *, windows=None, pip=None, webengine=False):
'distributions packages, or install it via pip.'.format(name)]
blocks.append('<br />'.join(lines))
if webengine:
- lines = ['Note QtWebEngine is not available for some distributions '
- '(like Debian/Ubuntu), so you need to start without '
- '--backend webengine there.']
+ lines = [
+ 'Note QtWebEngine is not available for some distributions '
+ '(like Debian/Ubuntu), so you need to start without '
+ '--backend webengine there.',
+ 'QtWebEngine is currently unsupported with the OS X .app, see '
+ 'https://github.com/The-Compiler/qutebrowser/issues/1692',
+ ]
else:
lines = ['<b>If you installed a qutebrowser package for your '
'distribution, please report this as a bug.</b>']