From b918a33200bcb2d53d8e52c499bf41bbdc89f849 Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Sat, 13 Nov 2021 21:04:46 +0300 Subject: [PATCH] fetch.py: report when files are already downloaded --- lib/fetch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/fetch.py b/lib/fetch.py index 7b1bc62..db0c458 100644 --- a/lib/fetch.py +++ b/lib/fetch.py @@ -91,6 +91,7 @@ def fetch_all(skip_existing=True): if os.path.exists(location): if skip_existing: existing_locations.append(location) + print("Already exists %s" % (location)) else: fatal("%s already exists" % location)