From 58976b46f9804754c17c00334485f07576c7c4ee Mon Sep 17 00:00:00 2001 From: Stephen Date: Thu, 8 Aug 2019 20:25:14 +0100 Subject: [PATCH] Fix typo: "IternalException" -> "InternalException" --- core/dbt/task/list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dbt/task/list.py b/core/dbt/task/list.py index 68d4127f3a8..8c6cf000d6a 100644 --- a/core/dbt/task/list.py +++ b/core/dbt/task/list.py @@ -97,7 +97,7 @@ def run(self): elif output == 'path': generator = self.generate_paths else: - raise dbt.exceptions.IternalException( + raise dbt.exceptions.InternalException( 'Invalid output {}'.format(output) ) for result in generator():