From 219758b9d2029de026c5552a1e88951afc1503d2 Mon Sep 17 00:00:00 2001 From: Eduardo Barretto Date: Thu, 23 Sep 2021 15:51:58 +0200 Subject: [PATCH] Fix pep8 issue --- ssg/build_remediations.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ssg/build_remediations.py b/ssg/build_remediations.py index 7987056f18cb..dac891b8f62f 100644 --- a/ssg/build_remediations.py +++ b/ssg/build_remediations.py @@ -308,7 +308,8 @@ def generate_platform_conditional(self, platform): assert cpe.value if cpe.negated: - return '{{ [ -n "${0}" ] && [ "${0}" != "{1}" ] ; }}'.format(cpe.variable, cpe.value) + return '{{ [ -n "${0}" ] && [ "${0}" != "{1}" ] ; }}'.format(cpe.variable, + cpe.value) return '[ "${0}" == "{1}" ]'.format(cpe.variable, cpe.value) elif platform is not None: # Assume any other platform is a Package CPE