render_string() now takes 3 parameters, not 5

pull/158/head
Guglielmetti Philippe 2018-06-21 09:28:55 +02:00
parent ac8bb81c72
commit 95b65536af
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,7 @@ class PDFPageInterpreter(object):
if settings.STRICT: if settings.STRICT:
raise PDFInterpreterError('No font specified!') raise PDFInterpreterError('No font specified!')
return return
self.device.render_string(self.textstate, seq, self.ncs, self.graphicstate.copy()) self.device.render_string(self.textstate, seq)#, self.ncs, self.graphicstate.copy())
return return
# show # show