Merge pull request #434 from zaphodef/patch-1

chg: Return empty list instead of None
pull/435/head
Raphaël Vinot 2019-08-08 15:15:12 +02:00 committed by GitHub
commit b68c3fce6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -90,4 +90,4 @@ def make_binary_objects(filepath=None, pseudofile=None, filename=None, standalon
logger.warning(e)
if not HAS_LIEF:
logger.warning('Please install lief, documentation here: https://github.com/lief-project/LIEF')
return misp_file, None, None
return misp_file, None, []