pull/1/head
Jordan Reiter 2013-03-27 13:14:58 -04:00
parent 44653071c3
commit e28b75a462
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ class PDFContentParser(PSStackParser):
data = strm.get_data()
if isinstance(data, bytes):
data = data.decode('latin-1')
self.fp = io.StringIO(data)
self.fp = StringIO(data)
return
def seek(self, pos):