Skip to content

Commit

Permalink
Merge pull request #1665 from sebdiem/patch-1
Browse files Browse the repository at this point in the history
fix: exception string in writer.py
  • Loading branch information
rtyler authored Sep 26, 2023
2 parents b447934 + 12eedfe commit 0a5aa39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/deltalake/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def write_deltalake(
):
raise ValueError(
"Schema of data does not match table schema\n"
f"Table schema:\n{schema}\nData Schema:\n{table.schema().to_pyarrow()}"
f"Data schema:\n{schema}\nTable Schema:\n{table.schema().to_pyarrow()}"
)

if mode == "error":
Expand Down

0 comments on commit 0a5aa39

Please sign in to comment.