Skip to content

Commit

Permalink
Merge pull request #212 from knowmalware/fix_print_info
Browse files Browse the repository at this point in the history
Fix print_info()
  • Loading branch information
erocarrera authored Nov 5, 2017
2 parents 2120103 + ab1cf31 commit f20b3f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4458,7 +4458,7 @@ def has_relocs(self):

def print_info(self, encoding='utf-8'):
"""Print all the PE header information in a human readable from."""
print(self.dump_info(), encoding=encoding)
print(self.dump_info(encoding=encoding))


def dump_info(self, dump=None, encoding='ascii'):
Expand Down

0 comments on commit f20b3f4

Please sign in to comment.