From 79fc591d7f49fa1ced596c006869e1f1f77c757c Mon Sep 17 00:00:00 2001 From: Connor McArthur Date: Thu, 26 Apr 2018 17:38:44 -0400 Subject: [PATCH] Implement relations api (#727) automatic commit by git-black, original commits: 5344f54c3c766b8b7716c0cbe26a78095b7ad9e7 a37374d1a4c2f463d3d66b747b4063265201d6d9 --- core/dbt/exceptions.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/dbt/exceptions.py b/core/dbt/exceptions.py index 301409f10fd..10f9c988ce4 100644 --- a/core/dbt/exceptions.py +++ b/core/dbt/exceptions.py @@ -722,9 +722,7 @@ def missing_config(model, name): def missing_relation(relation, model=None): - raise_compiler_error( - "Relation {} not found!".format(relation), - model) + raise_compiler_error("Relation {} not found!".format(relation), model) def raise_dataclass_not_dict(obj):