diff options
-rw-r--r-- | src/virtual/ogOperations.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/virtual/ogOperations.py b/src/virtual/ogOperations.py index 2b69fd1..d40170e 100644 --- a/src/virtual/ogOperations.py +++ b/src/virtual/ogOperations.py @@ -449,9 +449,10 @@ class OgVirtualOperations: subprocess.run([cmd], shell=True, check=True) try: - shutil.copy(f'{self.OG_IMAGES_PATH}/{name}', drive_path) - except: - return None + copy_src = f'{self.OG_IMAGES_PATH}/{name}' + shutil.copy(copy_src, drive_path) + except Exception as e: + raise OgError(f'Error trying to copy {copy_src} into {drive_path}: {e}') from e subprocess.run([f'umount {self.OG_IMAGES_PATH}'], shell=True) self.refresh(ogRest) |