From 4351fb087f3c37ce4ec40291346ad905035ee881 Mon Sep 17 00:00:00 2001 From: Ayrris Aunario Date: Thu, 18 Jul 2024 10:55:42 -0500 Subject: [PATCH] `breachwatch report` improvement: show (and save) updated summary scores --- keepercommander/commands/breachwatch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keepercommander/commands/breachwatch.py b/keepercommander/commands/breachwatch.py index fb90fb204..702ea06b9 100644 --- a/keepercommander/commands/breachwatch.py +++ b/keepercommander/commands/breachwatch.py @@ -287,4 +287,4 @@ def get_parser(self): def execute(self, params, **kwargs): BreachWatch.validate_reporting('breachwatch report', params) cmd = SecurityAuditReportCommand() - return cmd.execute(params, **{'breachwatch':True, **kwargs}) + return cmd.execute(params, **{'breachwatch': True, 'save': True, **kwargs})