diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/discover/fetchers/cli/cli_access.py | 2 |
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 |