We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d5f887 commit 36b6242Copy full SHA for 36b6242
analyzer/windows/modules/packages/xls.py
@@ -29,7 +29,7 @@ def __init__(self, options=None, config=None):
29
The .xls filename extension will be added automatically."""
30
31
def start(self, path):
32
- if not path.endswith((".xls", ".xlsx")):
+ if not path.endswith((".xls", ".xlsx", ".xlsb", ".xlsm")):
33
path = check_file_extension(path, ".xls")
34
excel = self.get_path_glob("EXCEL.EXE")
35
return self.execute(excel, f'"{path}" /dde', path)
0 commit comments