diff --git a/archivebox/config.py b/archivebox/config.py index 84e74710..ef6b09fd 100644 --- a/archivebox/config.py +++ b/archivebox/config.py @@ -221,7 +221,7 @@ try: WGET_AUTO_COMPRESSION = False if USE_WGET: WGET_VERSION = bin_version(WGET_BINARY) - WGET_AUTO_COMPRESSION = not run([WGET_BINARY, "--compression=auto", "--help"], stdout=DEVNULL).returncode + WGET_AUTO_COMPRESSION = not run([WGET_BINARY, "--compression=auto", "--help"], stdout=DEVNULL, stderr=DEVNULL).returncode WGET_USER_AGENT = WGET_USER_AGENT.format( VERSION=VERSION,