diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-05-06 19:10:11 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-05-06 19:10:48 +0200 |
commit | 1ca3639389ed116424ad5567403e09f18af74b87 (patch) | |
tree | 2ee1c21813ab98f5aafbba1ebb9839a291f3e0b1 /src | |
parent | 8ecd57552ac9e18313ea8a4a8c37818853dd639d (diff) |
live: rewrite log in case tiptorrent client fails
Specify that image file cannot be found in cache because tiptorrent has failed,
otherwise it is confusing.
Diffstat (limited to 'src')
-rw-r--r-- | src/live/ogOperations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index a43e756..f0c30bf 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -174,7 +174,7 @@ class OgLiveOperations: raise if (not os.path.exists(image_path)): - raise OgError(f'Image file {image_path} does not exist') + raise OgError(f'could not find {image_path} in cache') if (not tip_check_csum(repo, name)): raise OgError(f'checksum file {name}.full.sum is missing in repository {repo}') |