Skip to content

Commit

Permalink
fix string interpolation syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
lamalex committed Aug 3, 2024
1 parent c1bae97 commit b501e65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/spark/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ def get_cased_column_name_for_column(tuple_data: Tuple[str], column_name: str) -
if item.lower() == column_name.lower():
return item
raise DbtRuntimeError(
f'Column "{column_name}" not found in grants table columns `{', '.join(grants_table.column_names)}`.'
f'Column "{column_name}" not found in grants table columns `{", ".join(grants_table.column_names)}`.'
)

column_names = grants_table.column_names
Expand Down

0 comments on commit b501e65

Please sign in to comment.