Skip to content

Commit 36b6242

Browse files
authored
XLSX allow more extensions (#2246)
1 parent 4d5f887 commit 36b6242

File tree

1 file changed

+1
-1
lines changed
  • analyzer/windows/modules/packages

1 file changed

+1
-1
lines changed

analyzer/windows/modules/packages/xls.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def __init__(self, options=None, config=None):
2929
The .xls filename extension will be added automatically."""
3030

3131
def start(self, path):
32-
if not path.endswith((".xls", ".xlsx")):
32+
if not path.endswith((".xls", ".xlsx", ".xlsb", ".xlsm")):
3333
path = check_file_extension(path, ".xls")
3434
excel = self.get_path_glob("EXCEL.EXE")
3535
return self.execute(excel, f'"{path}" /dde', path)

0 commit comments

Comments
 (0)