From 5e8c1b2ffed92218181bbd755c405418f78931d4 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Tue, 2 Feb 2021 13:30:55 +0000 Subject: [PATCH] qutebrowser: fix proxy-pac setting --- qutebrowser/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config.py b/qutebrowser/config.py index 3d7b005..8075a2b 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -1105,7 +1105,7 @@ c.input.partial_timeout = 0 ## https://peter.sh/experiments/chromium-command-line-switches/ for a ## list) will work. ## Type: List of String -c.qt.args = [str('proxy-pac-url=file://' / config.configdir / 'proxy.pac')] +c.qt.args = ['proxy-pac-url=file://' + str(config.configdir / 'proxy.pac')] ## Additional environment variables to set. Setting an environment ## variable to null/None will unset it. -- 2.48.1