diff --git a/qutebrowser/misc/earlyinit.py b/qutebrowser/misc/earlyinit.py
index 1a0c361fc..cb6114cc8 100644
--- a/qutebrowser/misc/earlyinit.py
+++ b/qutebrowser/misc/earlyinit.py
@@ -65,15 +65,7 @@ def _missing_str(name, *, windows=None, pip=None, webengine=False):
lines = ['Please search for the python3 version of {} in your '
'distributions packages, or install it via pip.'.format(name)]
blocks.append('
'.join(lines))
- if webengine:
- lines = [
- ('Note QtWebEngine is not available for some distributions '
- '(like Ubuntu), so you need to start without --backend '
- 'webengine there.'),
- ('QtWebEngine is currently unsupported with the OS X .app, see '
- 'https://github.com/qutebrowser/qutebrowser/issues/1692'),
- ]
- else:
+ if not webengine:
lines = ['If you installed a qutebrowser package for your '
'distribution, please report this as a bug.']
blocks.append('
'.join(lines))