From 0897e9e12171872f410c09045180022cc6352178 Mon Sep 17 00:00:00 2001 From: Markus Cozowicz Date: Thu, 6 Jun 2024 18:33:12 +0000 Subject: [PATCH] fix escaping --- sempy_labs/Vertipaq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sempy_labs/Vertipaq.py b/sempy_labs/Vertipaq.py index f88e08b3..ca50a740 100644 --- a/sempy_labs/Vertipaq.py +++ b/sempy_labs/Vertipaq.py @@ -397,7 +397,7 @@ def vertipaq_analyzer(dataset: str, workspace: Optional[str] = None, export: Opt filePath = os.path.join(subFolderPath, fileName) + ext if os.path.exists(filePath): os.remove(filePath) - print(f"The Vertipaq Analyzer info for the '{dataset}' semantic model in the '{workspace}' workspace has been saved to the 'Vertipaq Analyzer\{zipFileName}' in the default lakehouse attached to this notebook.") + print(f"The Vertipaq Analyzer info for the '{dataset}' semantic model in the '{workspace}' workspace has been saved to the 'Vertipaq Analyzer/{zipFileName}' in the default lakehouse attached to this notebook.") def visualize_vertipaq(dataframes):