summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-07-02 18:25:52 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-07-02 22:21:07 +0200
commitff8d8d378b4cf562409624b330529eacc289cc52 (patch)
treef5a741821fecb83d54bdf858a62169ff7f422c19
parent9868402dfcb57bbb60747a7aec518b3f7d439c3e (diff)
downloadqutebrowser-ff8d8d378b4cf562409624b330529eacc289cc52.tar.gz
qutebrowser-ff8d8d378b4cf562409624b330529eacc289cc52.zip
ci: Improve vulture regex for problemmatchers
-rw-r--r--scripts/dev/ci/problemmatchers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dev/ci/problemmatchers.py b/scripts/dev/ci/problemmatchers.py
index 15b5cc8c4..a0ac0a45e 100644
--- a/scripts/dev/ci/problemmatchers.py
+++ b/scripts/dev/ci/problemmatchers.py
@@ -49,7 +49,7 @@ MATCHERS = {
"severity": "warning",
"pattern": [
{
- "regexp": r"([^:]*):([^:]*): ([^(]* \(\d+% confidence\))$",
+ "regexp": r"^([^:]+):(\d+): ([^(]+ \(\d+% confidence\))$",
"file": 1,
"line": 2,
"message": 3,