Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
noc
noc
Commits
f6fc9f9c
Commit
f6fc9f9c
authored
Aug 15, 2020
by
Andrey Vertiprahov
Browse files
Fix call handler on cli object_parser.
parent
5dde6f38
Pipeline
#25687
passed with stages
in 13 minutes and 52 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
core/script/cli/cli.py
View file @
f6fc9f9c
...
...
@@ -297,7 +297,7 @@ class CLI(BaseCLI):
self
.
logger
.
debug
(
"Match: %s"
,
rx
.
pattern
)
matched
=
buffer
[:
match
.
start
()]
buffer
=
self
.
buffer
[
match
.
end
()
:]
r
=
handler
(
matched
,
match
)
r
=
await
handler
(
matched
,
match
)
if
r
is
not
None
:
self
.
logger
.
debug
(
"Prompt matched"
)
done
=
True
...
...
Dmitry Volodin
@dv
mentioned in commit
b85f8fd0
·
Aug 15, 2020
mentioned in commit
b85f8fd0
mentioned in commit b85f8fd077e6037eed1788b7858580e0dc8ef959
Toggle commit list
Andrey Vertiprahov
@aversant
mentioned in merge request
!4159 (merged)
·
Aug 15, 2020
mentioned in merge request
!4159 (merged)
mentioned in merge request !4159
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment