Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion fleep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

import os
import json
import sys


with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), "data.json")) as data_file:
Expand Down Expand Up @@ -67,7 +68,10 @@ def get(obj):
"mime": dict()
}

stream = " ".join(['{:02X}'.format(byte) for byte in obj])
if sys.version_info[0] < 3:
obj = bytearray(obj)

stream = ' '.join(('{:02X}'.format(byte) for byte in obj))

for element in data:
for signature in element["signature"]:
Expand Down