Skip to content

Commit c9f80ef

Browse files
authored
Merge pull request #9448 from cgohlke/patch-15
FIX: instance of 'RendererPS' has no 'tex' member
2 parents 1293916 + 3b60aaf commit c9f80ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_ps.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
640640
write("% text\n")
641641

642642
if ismath=='TeX':
643-
return self.tex(gc, x, y, s, prop, angle)
643+
return self.draw_tex(gc, x, y, s, prop, angle)
644644

645645
elif ismath:
646646
return self.draw_mathtext(gc, x, y, s, prop, angle)

0 commit comments

Comments
 (0)