Commit 50ce353397cbae868a8263a7664f0b277dbc1cab
1 parent
02863472
fixed command line option --relaxed
Showing
1 changed file
with
1 additions
and
1 deletions
oletools/olevba.py
| ... | ... | @@ -2062,7 +2062,7 @@ def _extract_vba(ole, vba_root, project_path, dir_path, relaxed=False): |
| 2062 | 2062 | """ |
| 2063 | 2063 | log.debug('relaxed is %s' % relaxed) |
| 2064 | 2064 | |
| 2065 | - project = VBA_Project(ole, vba_root, project_path, dir_path, relaxed=False) | |
| 2065 | + project = VBA_Project(ole, vba_root, project_path, dir_path, relaxed) | |
| 2066 | 2066 | project.parse_project_stream() |
| 2067 | 2067 | |
| 2068 | 2068 | for code_path, filename, code_data in project.parse_modules(): | ... | ... |