aboutsummaryrefslogtreecommitdiff
path: root/read_manga.py
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-11-20 02:11:00 +0100
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:12:34 +0200
commit472e0333c05207fef5cf13a0585a91fa78e233d9 (patch)
treeb7836a0bd6745ed139de61a6f46b237fedbcd6d2 /read_manga.py
parent718f9feb8de96be91748521ff52d802b34d5dc73 (diff)
Hide tracking files
session_id, finished and in_progress files should be hidden (start with a dot). Also remove deprecated "downloaded" file.
Diffstat (limited to 'read_manga.py')
-rwxr-xr-xread_manga.py2
1 files changed, 1 insertions, 1 deletions
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)