Code Review
/
calipso.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
8bf7b48
)
fix matching of CLI output against regexp list
97/40397/1
author
yayogev
<yaronyogev@gmail.com>
Mon, 28 Aug 2017 12:50:39 +0000
(15:50 +0300)
committer
yayogev
<yaronyogev@gmail.com>
Mon, 28 Aug 2017 12:50:39 +0000
(15:50 +0300)
Change-Id: I8f177ec1a1fd1c75681f6abf786eeeed50fc426d
Signed-off-by: yayogev <yaronyogev@gmail.com>
app/discover/fetchers/cli/cli_access.py
patch
|
blob
|
history
diff --git
a/app/discover/fetchers/cli/cli_access.py
b/app/discover/fetchers/cli/cli_access.py
index
f745de8
..
275a3e8
100644
(file)
--- 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