From 982d51a465f3cdcc783c539c0cf6a54e9ed6d2f3 Mon Sep 17 00:00:00 2001 From: pemontto Date: Mon, 15 Apr 2019 21:59:01 +1000 Subject: [PATCH] typo --- vulnwhisp/vulnwhisp.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vulnwhisp/vulnwhisp.py b/vulnwhisp/vulnwhisp.py index 954e8ba..55f452a 100755 --- a/vulnwhisp/vulnwhisp.py +++ b/vulnwhisp/vulnwhisp.py @@ -242,6 +242,7 @@ class vulnWhispererBase(object): scan_names = [] return results + def common_normalise(self, df): """Map and transform common data values""" self.logger.info('Start common mapping') @@ -279,7 +280,7 @@ class vulnWhispererBase(object): ) df.drop('cvss_temporal_vector', axis=1, inplace=True) if 'cvss3_vector' in df and 'cvss3_temporal_vector' in df: - self.logger.info('Normalising CVSS Vector') + self.logger.info('Normalising CVSS3 Vector') df['cvss3_vector'] = ( df[['cvss3_vector', 'cvss3_temporal_vector']] .apply(lambda x: '{}/{}'.format(x[0], x[1]), axis=1)