Browse Source

Using absolute path in cache

pull/5/head
Ryan Reed 2 years ago
parent
commit
9386a507ba
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/transpose/utils.py

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

@ -41,7 +41,7 @@ def create_cache(cache_path: Path, original_path: Path) -> None:
Returns:
None
"""
template = {"version": version, "original_path": str(original_path)}
template = {"version": version, "original_path": str(original_path.absolute())}
with open(str(cache_path), "w") as f:
json.dump(template, f)


Loading…
Cancel
Save