From dba2d43bb50f82b0c51c1343cccc3f0987aced9d Mon Sep 17 00:00:00 2001 From: Drew Banin Date: Tue, 9 May 2017 16:01:42 -0400 Subject: [PATCH] Compile on-run-(start|end) hooks to file (#412) compile on-run-(start|end) hooks to a file automatic commit by git-black, original commits: ce46052aaefe795c7293302a5f10365ca7a24be4 --- core/dbt/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dbt/utils.py b/core/dbt/utils.py index 4047c28c6bf..a8db40a4b31 100644 --- a/core/dbt/utils.py +++ b/core/dbt/utils.py @@ -248,7 +248,7 @@ def get_pseudo_test_path(node_name, source_path): def get_pseudo_hook_path(hook_name): - path_parts = ['hooks', "{}.sql".format(hook_name)] + path_parts = ["hooks", "{}.sql".format(hook_name)] return os.path.join(*path_parts)