From ecfca13b6dd95854ce7be3c284c0519ec82ca409 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Thu, 2 May 2019 15:20:21 -0400 Subject: [PATCH] fix present folders docstring --- archivebox/index/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/index/__init__.py b/archivebox/index/__init__.py index aa437b6c..25f4f3a3 100644 --- a/archivebox/index/__init__.py +++ b/archivebox/index/__init__.py @@ -408,7 +408,7 @@ def get_unarchived_folders(links, out_dir: str=OUTPUT_DIR) -> Dict[str, Optional } def get_present_folders(links, out_dir: str=OUTPUT_DIR) -> Dict[str, Optional[Link]]: - """dirs that are expected to exist based on the main index""" + """dirs that actually exist in the archive/ folder""" all_folders = {} for entry in os.scandir(os.path.join(out_dir, ARCHIVE_DIR_NAME)):