From a690d242a45a84608e27114c66f19690f0344b88 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 1 Jun 2017 14:03:46 +0200 Subject: [PATCH] Update webengine dependency message --- qutebrowser/misc/earlyinit.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) 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))