Skip to content

Commit

Permalink
Merge pull request #493 from nschloe/fix-extern-tables
Browse files Browse the repository at this point in the history
fix extern tables
  • Loading branch information
nschloe committed Jun 21, 2021
2 parents d2af95f + 24796b5 commit 7f4d2d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tikzplotlib/_line2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def _table(obj, data): # noqa: C901
with open(filepath, "w") as f:
# No encoding handling required: plot_table is only ASCII
f.write("".join(plot_table))
content.append(rel_filepath)
content.append(str(rel_filepath))
else:
content.extend(plot_table)

Expand Down

0 comments on commit 7f4d2d4

Please sign in to comment.