From 50ce353397cbae868a8263a7664f0b277dbc1cab Mon Sep 17 00:00:00 2001 From: Klaus van der Vorst Date: Mon, 10 Aug 2020 19:55:54 +0200 Subject: [PATCH] fixed command line option --relaxed --- oletools/olevba.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oletools/olevba.py b/oletools/olevba.py index 11b6bf7..15967fa 100644 --- a/oletools/olevba.py +++ b/oletools/olevba.py @@ -2062,7 +2062,7 @@ def _extract_vba(ole, vba_root, project_path, dir_path, relaxed=False): """ log.debug('relaxed is %s' % relaxed) - project = VBA_Project(ole, vba_root, project_path, dir_path, relaxed=False) + project = VBA_Project(ole, vba_root, project_path, dir_path, relaxed) project.parse_project_stream() for code_path, filename, code_data in project.parse_modules(): -- libgit2 0.21.4