Skip to content

Commit

Permalink
datafold#637 state:modified --dbt
Browse files Browse the repository at this point in the history
  • Loading branch information
vita-datamonk committed Jul 22, 2023
1 parent e64df9d commit 34ceb92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion data_diff/dbt_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ def __init__(
self.dev_manifest_obj = self.get_manifest_obj(self.project_dir / MANIFEST_PATH)
self.prod_manifest_obj = None
if state:
self.prod_manifest_obj = self.get_manifest_obj(Path(state))
manifest_path = state + "/manifest.json"
self.prod_manifest_obj = self.get_manifest_obj(Path(manifest_path))

self.dbt_user_id = self.dev_manifest_obj.metadata.user_id
self.dbt_version = self.dev_manifest_obj.metadata.dbt_version
Expand Down

0 comments on commit 34ceb92

Please sign in to comment.