Skip to content

Commit

Permalink
Fix parsing message (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
JCZuurmond authored Jun 12, 2024
1 parent 1575f9f commit 2a94673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/databricks/labs/lsql/dashboards.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def create_dashboard(self, dashboard_folder: Path) -> Dashboard:
try:
widget = self._get_widget(dataset)
except sqlglot.ParseError as e:
logger.warning(f"Error '{e}' when parsing: {dataset.query}")
logger.warning(f"Parsing {dataset.query}: {e}")
continue
else:
widget = self._get_text_widget(path)
Expand Down

0 comments on commit 2a94673

Please sign in to comment.