aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authoryayogev <yaronyogev@gmail.com>2017-08-28 15:50:39 +0300
committeryayogev <yaronyogev@gmail.com>2017-08-28 15:50:39 +0300
commitc8625e396e9d49eda2a927167dce3cda70dee839 (patch)
tree45fd8f2dc53cdfb0d3bfd636da468f249e912503 /app
parent8bf7b48568df4025cf24bd1dacf6dd8ac3b3532c (diff)
fix matching of CLI output against regexp list
Change-Id: I8f177ec1a1fd1c75681f6abf786eeeed50fc426d Signed-off-by: yayogev <yaronyogev@gmail.com>
Diffstat (limited to 'app')
-rw-r--r--app/discover/fetchers/cli/cli_access.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/discover/fetchers/cli/cli_access.py b/app/discover/fetchers/cli/cli_access.py
index f745de8..275a3e8 100644
--- a/app/discover/fetchers/cli/cli_access.py
+++ b/app/discover/fetchers/cli/cli_access.py
@@ -204,4 +204,3 @@ class CliAccess(BinaryConverter, Fetcher):
matches = regex.search(line)
if matches and name not in o:
o[name] = matches.group(1)
- break