aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/discover/fetchers/cli/cli_access.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/discover/fetchers/cli/cli_access.py b/app/discover/fetchers/cli/cli_access.py
index 11579bd..24f2975 100644
--- a/app/discover/fetchers/cli/cli_access.py
+++ b/app/discover/fetchers/cli/cli_access.py
@@ -202,6 +202,6 @@ class CliAccess(BinaryConverter, Fetcher):
regex = regexp_tuple['re']
regex = re.compile(regex)
matches = regex.search(line)
- if matches:
+ if matches and name not in o:
o[name] = matches.group(1)
break