Skip to content

Commit

Permalink
hotfix: Correcting lstrip behavior in manifests.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasyager committed Jan 22, 2025
1 parent 02daff0 commit 4c463c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt_loom/manifests.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def load_from_local_filesystem(config: FileReferenceConfig) -> Dict:
if not config.path.path:
raise InvalidManifestPath()

file_path = Path(unquote(config.path.path.lstrip("r")))
file_path = Path(unquote(config.path.path.lstrip("/")))

if not file_path.exists():
raise LoomConfigurationError(f"The path `{file_path}` does not exist.")
Expand Down

0 comments on commit 4c463c8

Please sign in to comment.