From 967eb75e7c4af503ea0f85280dd7e05e12d76336 Mon Sep 17 00:00:00 2001 From: Tyler Kellogg Date: Tue, 20 Jul 2021 15:01:09 -0700 Subject: [PATCH] [iOS CLI] Remove non-existent SYSDIAGNOSE_MODULES reference --- mvt/ios/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvt/ios/cli.py b/mvt/ios/cli.py index 67b2864..a8f48ba 100644 --- a/mvt/ios/cli.py +++ b/mvt/ios/cli.py @@ -172,7 +172,7 @@ def check_fs(iocs, output, fast, dump_path, list_modules, module): @click.argument("FOLDER", type=click.Path(exists=True)) def check_iocs(iocs, list_modules, module, folder): all_modules = [] - for entry in BACKUP_MODULES + FS_MODULES + SYSDIAGNOSE_MODULES: + for entry in BACKUP_MODULES + FS_MODULES: if entry not in all_modules: all_modules.append(entry)