From 472e0333c05207fef5cf13a0585a91fa78e233d9 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 20 Nov 2019 02:11:00 +0100 Subject: Hide tracking files session_id, finished and in_progress files should be hidden (start with a dot). Also remove deprecated "downloaded" file. --- read_manga.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'read_manga.py') diff --git a/read_manga.py b/read_manga.py index b4425cf..f6f2dc7 100755 --- a/read_manga.py +++ b/read_manga.py @@ -68,7 +68,7 @@ for chapter in chapters_by_oldest[start_index:]: images = [] image_dir = os.path.join(manga_directory, chapter) for image in os.listdir(image_dir): - # Ignore "in_progress", "finished" and "session_id". We only want image files. + # Ignore ".in_progress", ".finished" and ".session_id". We only want image files. if image.find(".") != -1: images.append(image) -- cgit v1.2.3