diff options
-rw-r--r-- | src/utils/legacy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/legacy.py b/src/utils/legacy.py index def5459..0f6c53c 100644 --- a/src/utils/legacy.py +++ b/src/utils/legacy.py @@ -100,7 +100,7 @@ def run_lzop_partcloneinfo(image_path): p2_out, p2_err = p2.communicate() if p2.returncode != 0: - raise ValueError('Unable to process image {image_path}') + raise ValueError(f'Unable to process image {image_path}') return p2_out |