From 89d53a1f482b95a67c6a801d30bf780df3852c44 Mon Sep 17 00:00:00 2001 From: mayurinehate Date: Wed, 19 Oct 2022 11:41:18 +0530 Subject: [PATCH] update comment --- .../src/datahub/ingestion/source/tableau_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py b/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py index aa7db2a281fbc3..74e9759e97c4fa 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py +++ b/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py @@ -465,7 +465,7 @@ def get_fully_qualified_table_name( # do some final adjustments on the fully qualified table name to help them line up with source systems: # lowercase it fully_qualified_table_name = fully_qualified_table_name.lower() - # strip double quotes and escaped double quotes + # strip double quotes, escaped double quotes and backticks fully_qualified_table_name = ( fully_qualified_table_name.replace('\\"', "") .replace('"', "")