Browse Source

Correcting error message

pull/6/head
Ryan Reed 2 years ago
parent
commit
69edf51670
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/transpose/transpose.py

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

@ -46,7 +46,7 @@ class Transpose:
""" """
stored_path = pathlib.Path(stored_path) stored_path = pathlib.Path(stored_path)
if not stored_path.exists(): if not stored_path.exists():
raise TransposeError("Stored path does ")
raise TransposeError(f"Stored path does not exist: {stored_path}")
self.cache_path = stored_path.joinpath(self.cache_filename) self.cache_path = stored_path.joinpath(self.cache_filename)


Loading…
Cancel
Save