From 9aa934a4100e1357604915a151893bbe7332b04c Mon Sep 17 00:00:00 2001 From: Cristian Date: Thu, 31 Dec 2020 13:03:53 -0500 Subject: [PATCH] fix: status was raising error --- archivebox/index/json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/index/json.py b/archivebox/index/json.py index 9097b95e..799320e7 100644 --- a/archivebox/index/json.py +++ b/archivebox/index/json.py @@ -117,7 +117,7 @@ def parse_json_snapshot_details(out_dir: Union[Path, str]) -> Iterator[dict]: if entry.is_dir(follow_symlinks=True): if (Path(entry.path) / 'index.json').exists(): try: - snapshot_details = load_json_snapshot_details(entry.path) + snapshot_details = load_json_snapshot(Path(entry.path)) except KeyError: snapshot_details = None if snapshot_details: