From 9d98cf48ce4b97516c5da8bd085a3fcb6838c564 Mon Sep 17 00:00:00 2001 From: Tessa Walsh Date: Thu, 31 Oct 2024 12:38:13 -0400 Subject: [PATCH] TEMP: Check if sanitization is failing tests --- pywb/apps/static_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywb/apps/static_handler.py b/pywb/apps/static_handler.py index c191ae65..6e162ed1 100644 --- a/pywb/apps/static_handler.py +++ b/pywb/apps/static_handler.py @@ -30,7 +30,7 @@ def __call__(self, environ, url_str): if url.endswith('/'): url += 'index.html' - url = sanitize_filepath(url) + # url = sanitize_filepath(url) canonical_static_path = environ.get('pywb.static_dir') if not canonical_static_path: