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
1b1c7279
Commit
1b1c7279
authored
Aug 19, 2019
by
Dmitry Lukhtionov
Browse files
Fix
parent
dc61bd6c
Pipeline
#15361
passed with stages
in 11 minutes and 10 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
core/matcher.py
View file @
1b1c7279
...
...
@@ -53,7 +53,7 @@ def match(ctx, expr):
def
match_regex
(
v
,
rx
):
return
bool
(
re
.
search
(
rx
,
str
(
v
)
))
return
bool
(
re
.
search
(
rx
,
v
or
""
))
def
match_in
(
v
,
iter
):
...
...
Andrey Vertiprahov
@aversant
mentioned in commit
12987ed4
·
Sep 01, 2019
mentioned in commit
12987ed4
mentioned in commit 12987ed4ad2aea9835f786710fc0b2a7d554e83b
Toggle commit list
Andrey Vertiprahov
@aversant
mentioned in merge request
!2556 (merged)
·
Sep 01, 2019
mentioned in merge request
!2556 (merged)
mentioned in merge request !2556
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