diff options
author | Tibor Frank <tifrank@cisco.com> | 2020-05-06 14:38:29 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2020-05-07 05:20:40 +0000 |
commit | 48cd54ff00049d58494834d25d3f0ac846ce4017 (patch) | |
tree | e5a021d7c70d9bb89846579c046c1a14501c79ea /resources/tools/presentation/input_data_parser.py | |
parent | 007b6075fa425f8ff906bc80f9277e2281ab6b45 (diff) |
Trending: NDRPDR dashboard
Change-Id: I7f4c84dd47874c484f34f389b93de635c66a77c1
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/input_data_parser.py')
-rw-r--r-- | resources/tools/presentation/input_data_parser.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 27db6a84d8..fc640875ce 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -1454,17 +1454,17 @@ class InputData: do_repeat -= 1 if not success: logging.error( - f"It is not possible to download the input data file from the " - f"job {job}, build {build[u'build']}, or it is damaged. " - f"Skipped." + f"It is not possible to download the input data file from the " + f"job {job}, build {build[u'build']}, or it is damaged. " + f"Skipped." ) if success: logging.info(f" Processing data from build {build[u'build']}") data = self._parse_tests(job, build) if data is None: logging.error( - f"Input data file from the job {job}, build " - f"{build[u'build']} is damaged. Skipped." + f"Input data file from the job {job}, build " + f"{build[u'build']} is damaged. Skipped." ) else: state = u"processed" @@ -1592,7 +1592,7 @@ class InputData: self._cfg.add_build(job, build) logging.info(f"Processing {job}: {build_nr:2d}: {local_file}") - data = self._parse_tests(job, build, list()) + data = self._parse_tests(job, build) if data is None: raise PresentationError( f"Error occurred while parsing the file {local_file}" |