Skip to content

Commit

Permalink
#212 clean comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromeleonard committed May 31, 2018
1 parent e99a05d commit 5141a54
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions analyzers/FileInfo/submodules/submodule_pe.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,11 @@ def pe_iat(pe):
if pe:
try:
for entry in pe.DIRECTORY_ENTRY_IMPORT:
# try:
imp = {
'entryname': entry.dll.decode(),
'symbols': []
}
# try:

for symbol in entry.imports:
if symbol.name is not None:
imp['symbols'].append(symbol.name.decode())
Expand Down

0 comments on commit 5141a54

Please sign in to comment.