Skip to content

Commit 3ee0ad5

Browse files
committed
Fix ps distillation (mpl helpers take strs, not Paths).
1 parent 7132d8b commit 3ee0ad5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/mplcairo/base.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,8 @@ def _print_ps_impl(self, is_eps, path_or_stream, *,
301301
{"ghostscript": backend_ps.gs_distill,
302302
"xpdf": backend_ps.xpdf_distill}[
303303
mpl.rcParams["ps.usedistiller"]](
304-
tmp_name, False, ptype=papertype)
305-
with open(tmp_name, "rb") as tmp_file, \
304+
str(tmp_name), False, ptype=papertype)
305+
with tmp_name.open("rb") as tmp_file, \
306306
cbook.open_file_cm(path_or_stream, "wb") as stream:
307307
shutil.copyfileobj(tmp_file, stream)
308308
else:

0 commit comments

Comments
 (0)