Skip to content

Commit 7f4d2d4

Browse files
authored
Merge pull request #493 from nschloe/fix-extern-tables
fix extern tables
2 parents d2af95f + 24796b5 commit 7f4d2d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tikzplotlib/_line2d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def _table(obj, data): # noqa: C901
288288
with open(filepath, "w") as f:
289289
# No encoding handling required: plot_table is only ASCII
290290
f.write("".join(plot_table))
291-
content.append(rel_filepath)
291+
content.append(str(rel_filepath))
292292
else:
293293
content.extend(plot_table)
294294

0 commit comments

Comments
 (0)