diff --git a/valdi/cli/volume_manager.py b/valdi/cli/volume_manager.py index e66bab2..01f90f7 100644 --- a/valdi/cli/volume_manager.py +++ b/valdi/cli/volume_manager.py @@ -78,5 +78,5 @@ def unmount_volume(mountpoint): check=True ) except subprocess.CalledProcessError as e: - print(f'Error unmounting volume: {e.stderr}') + print(f'Error unmounting volume{f": {e.stderr}" if e.stderr is not None else ""}') sys.exit(1)