py3: make pdb input work

This commit is contained in:
Eli Schwartz 2019-05-19 14:26:13 -04:00
parent 047d539e0a
commit 4bbc8df3ab
No known key found for this signature in database
GPG Key ID: CEB167EFB5722BD6

View File

@ -24,7 +24,7 @@ class PdbHeaderReader(object):
def identity(self):
self.stream.seek(60)
ident = self.stream.read(8)
return ident
return ident.decode('utf-8')
def section_count(self):
self.stream.seek(76)