debug prints

This commit is contained in:
Inex Code 2024-12-21 21:34:34 +03:00
parent 6ccdb27792
commit ccdd4d6644
No known key found for this signature in database

View file

@ -105,8 +105,8 @@ class Bind:
["umount", self.binding_path],
check=True,
)
except subprocess.CalledProcessError:
raise BindError(f"Unable to unmount folder {self.binding_path}.")
except subprocess.CalledProcessError as error:
raise BindError(f"Unable to unmount folder {self.binding_path}. {error}")
pass
def ensure_ownership(self) -> None: