From 450b4534ad6ff7524ef7ea769ebbd75db8eee680 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Fri, 8 Mar 2019 17:10:18 -0500 Subject: [PATCH] actually fix path --- archivebox/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/util.py b/archivebox/util.py index 556cdd04..facfc4a0 100644 --- a/archivebox/util.py +++ b/archivebox/util.py @@ -271,7 +271,7 @@ def wget_output_path(link, look_in=None): if re.search(".+\\.[Hh][Tt][Mm][Ll]?$", f, re.I | re.M) ] if html_files: - return urlencode(os.path.join(ARCHIVE_DIR, link['timestamp'], *wget_folder, html_files[0])) + return urlencode(os.path.join('archive', link['timestamp'], *wget_folder, html_files[0])) return None