From 2b745738a3db15b3b1702c460391ea0471cef2a0 Mon Sep 17 00:00:00 2001 From: Abhishek Singh Date: Wed, 19 Jun 2024 23:44:47 -0700 Subject: [PATCH] Changed warning message --- dbt/adapters/oracle/impl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbt/adapters/oracle/impl.py b/dbt/adapters/oracle/impl.py index 0358a07..5691957 100644 --- a/dbt/adapters/oracle/impl.py +++ b/dbt/adapters/oracle/impl.py @@ -84,10 +84,10 @@ GET_DATABASE_MACRO_NAME = 'get_database_name' MISSING_DATABASE_NAME_FOR_CATALOG_WARNING_MESSAGE = ( - "database key is missing from the target-profile in the file profiles.yml " + "database key is missing from the target profile in the file profiles.yml " "\n Starting with dbt-oracle 1.8 database name is needed for catalog generation " "\n Without database key in the target profile the generated catalog will be empty " - "\n \t i.e. `dbt docs generate` command will generate an empty catalog json " + "\n i.e. `dbt docs generate` command will generate an empty catalog json " "\n Make the following entry in dbt profile.yml file for the target profile " "\n database: {0}" )