Browse Source

Correcting source_path location on store

pull/9/head
Ryan Reed 1 year ago
parent
commit
7c53cf705e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/transpose/transpose.py

+ 1
- 1
src/transpose/transpose.py View File

@ -208,7 +208,7 @@ class Transpose:
if storage_path.exists(): if storage_path.exists():
raise TransposeError(f"Store path already exists: '{storage_path}'") 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(): if not source_path.exists():
raise TransposeError(f"Source path does not exist: '{source_path}'") raise TransposeError(f"Source path does not exist: '{source_path}'")


Loading…
Cancel
Save