From 7c53cf705e471c1a90851ae2eaaf58d217c5db6c Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Tue, 5 Sep 2023 21:54:41 -0400 Subject: [PATCH] Correcting source_path location on store --- src/transpose/transpose.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transpose/transpose.py b/src/transpose/transpose.py index 8fc4e7d..c1e02b3 100644 --- a/src/transpose/transpose.py +++ b/src/transpose/transpose.py @@ -208,7 +208,7 @@ class Transpose: if storage_path.exists(): raise TransposeError(f"Store path already exists: '{storage_path}'") - source_path = self.config.entries[name].path + source_path = Path(source_path) if not source_path.exists(): raise TransposeError(f"Source path does not exist: '{source_path}'")