WMI_Forensics icon indicating copy to clipboard operation
WMI_Forensics copied to clipboard

Fix TypeError when joining lines

Open 0xhido opened this issue 5 years ago • 0 comments

The join function expects getting string but we are reading bytes:

objects_file = open(sys.argv[1], "rb")

So I cast it to be a string:

current_line = str(objects_file.readline())

0xhido avatar Aug 14 '20 14:08 0xhido