From edd0d7915b9ca6365eaa5bd1c4fd27a010cf9b1a Mon Sep 17 00:00:00 2001 From: benoit74 Date: Tue, 22 Aug 2023 16:24:42 +0200 Subject: [PATCH] Change default since /tmp is considered insecured --- scraper/src/fcc2zim/entrypoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scraper/src/fcc2zim/entrypoint.py b/scraper/src/fcc2zim/entrypoint.py index 7703d62..c8a2109 100644 --- a/scraper/src/fcc2zim/entrypoint.py +++ b/scraper/src/fcc2zim/entrypoint.py @@ -108,7 +108,7 @@ def main(): "--tmp-dir", type=str, help="The temporary directory to hold temporary files during scraper operation", - default="/tmp", # noqa: S108 + default="tmp", ) parser.add_argument( "--zimui-dist-dir",