From a8a8fd14aca44840c235b53e1eb7118bbbe5f910 Mon Sep 17 00:00:00 2001 From: Angel Rey Date: Fri, 11 Sep 2020 14:19:06 -0500 Subject: [PATCH] Fixed indent headers.json --- archivebox/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/util.py b/archivebox/util.py index 43994bbd..6e1782f9 100644 --- a/archivebox/util.py +++ b/archivebox/util.py @@ -185,7 +185,7 @@ def get_headers(url: str, timeout: int=None) -> str: timeout=timeout, ) - return pyjson.dumps(dict(response.headers)) + return pyjson.dumps(dict(response.headers), indent=4) @enforce_types