From 4c7698a36b05f0882953c4d83d315edcfc72dc19 Mon Sep 17 00:00:00 2001 From: Fran Lozano Date: Sat, 21 Dec 2019 14:06:01 +0100 Subject: [PATCH] Use --project-dir outside current dir in debug when it exists #1733 automatic commit by git-black, original commits: c1b3690671c797b31b019bd1c23c17af644e134e --- core/dbt/task/debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dbt/task/debug.py b/core/dbt/task/debug.py index 6486e320ed5..fc1b602c7d5 100644 --- a/core/dbt/task/debug.py +++ b/core/dbt/task/debug.py @@ -80,7 +80,7 @@ def __init__(self, args, config): self.project_dir = args.project_dir else: self.project_dir = os.getcwd() - self.project_path = os.path.join(self.project_dir, 'dbt_project.yml') + self.project_path = os.path.join(self.project_dir, "dbt_project.yml") self.cli_vars = parse_cli_vars(getattr(self.args, "vars", "{}")) # set by _load_*