Remove debugging code

This commit is contained in:
David Boreham 2023-07-21 11:19:46 -06:00
parent 41f82300c5
commit 60d915ed6d

View File

@ -68,7 +68,6 @@ def _create_bind_dir_if_relative(volume, path_string, compose_dir):
path = Path(path_string)
if not path.is_absolute():
absolute_path = Path(compose_dir).joinpath(path)
print(f"Creating this directory: {absolute_path}")
absolute_path.mkdir(parents=True, exist_ok=True)
else:
if not path.exists():