diff options
author | Tibor Frank <tifrank@cisco.com> | 2019-03-25 13:32:52 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2019-03-25 13:32:52 +0100 |
commit | 3e06f8130ec9df4b6cc0241156be6744b47955ca (patch) | |
tree | 5f148fabd0536d6a88211d72dcee6bc6d581a5a7 | |
parent | 52960c7ed875f0fda48cd23a9a4d74274a0a2daf (diff) |
Trending: Fix vpp-ref
Change-Id: I3179175f681a99709445e6603711060e46fa8885
Signed-off-by: Tibor Frank <tifrank@cisco.com>
-rw-r--r-- | resources/tools/presentation/input_data_parser.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 37194217a1..8feb057e28 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -411,7 +411,8 @@ class ExecutionChecker(ResultVisitor): """ if msg.message.count("return STDOUT Version:") or \ - msg.message.count("VPP Version:"): + msg.message.count("VPP Version:") or \ + msg.message.count("VPP version:"): self._version = str(re.search(self.REGEX_VERSION_VPP, msg.message). group(2)) self._data["metadata"]["version"] = self._version |