summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/utils/tiptorrent.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/utils/tiptorrent.py b/src/utils/tiptorrent.py
index 14ede8b..1aa1a6a 100644
--- a/src/utils/tiptorrent.py
+++ b/src/utils/tiptorrent.py
@@ -80,9 +80,11 @@ def tip_check_csum(tip_addr, image_name):
logging.info(f'Verifying checksum for {image_name}.img, please wait...')
image_path = f'{OG_CACHE_IMAGE_PATH}{image_name}.img'
if not os.path.exists(image_path):
- raise OgError(f'File {image_path} does not exist')
+ logging.error(f'File {image_path} does not exist')
+ return False
if not os.path.exists(f"{image_path}.full.sum"):
- raise OgError(f'File {image_path}.full.sum does not exist in repository {tip_addr}')
+ logging.error(f'File {image_path}.full.sum does not exist in repository {tip_addr}')
+ return False
cache_csum = _tip_read_csum(f"{image_path}.full.sum")
remote_csum = tip_fetch_csum(tip_addr, image_name)