From 9373a2f66732283d02340809f95f18337d92edb9 Mon Sep 17 00:00:00 2001 From: Lauren Liberda Date: Thu, 3 Jun 2021 17:16:39 +0200 Subject: [PATCH] [options] fix playwright headlessness behavior --- haruhi_dl/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haruhi_dl/options.py b/haruhi_dl/options.py index 756b307ce..79204a482 100644 --- a/haruhi_dl/options.py +++ b/haruhi_dl/options.py @@ -713,7 +713,7 @@ def parseOpts(overrideArguments=None): help='Do NOT contact the haruhi-dl server for debugging') verbosity.add_option( '--no-headless-playwright', - dest='headless_playwright', action='store_false', default=False, + dest='headless_playwright', action='store_false', default=True, help='Show browsers automated with Playwright on the screen') filesystem = optparse.OptionGroup(parser, 'Filesystem Options')