From 1df4f19801095573604f4121c0bd2730dd4031f2 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Mon, 29 Jul 2019 19:42:18 -0400 Subject: [PATCH] security: Fixup refactoring Signed-off-by: James Valleroy --- plinth/modules/security/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/security/__init__.py b/plinth/modules/security/__init__.py index 433d7506d..69e881527 100644 --- a/plinth/modules/security/__init__.py +++ b/plinth/modules/security/__init__.py @@ -147,6 +147,6 @@ def get_vulnerability_counts(): for cve_packages in cves.values(): for app_ in apps.values(): if cve_packages & app_['packages']: - app['count'] += 1 + app_['count'] += 1 return apps