From c95632883eca8a32f873f6c8a3189a5f43efc64d Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Thu, 21 Feb 2019 16:03:19 -0500 Subject: [PATCH] fix without_hash to without_fragment --- archivebox/archive_methods.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archivebox/archive_methods.py b/archivebox/archive_methods.py index 8f466efa..d085871d 100644 --- a/archivebox/archive_methods.py +++ b/archivebox/archive_methods.py @@ -41,7 +41,7 @@ from config import ( GIT_SHA, ) from util import ( - without_hash, + without_fragment, check_dependencies, fetch_page_title, progress, @@ -620,7 +620,7 @@ def fetch_git(link_dir, link, timeout=TIMEOUT): 'clone', '--mirror', '--recursive', - without_hash(link['url']), + without_fragment(link['url']), ] output = 'git'