summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-07-09 09:47:53 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-07-09 09:47:53 +0200
commit858a6e32685c35fcef1eab960ccd7aea46824a0e (patch)
tree185488ce331243d92d3e492d24349d4c51fb0419
parent1a3e37027001e76b28f2c5c98114a09ee80995b1 (diff)
downloadqutebrowser-858a6e32685c35fcef1eab960ccd7aea46824a0e.tar.gz
qutebrowser-858a6e32685c35fcef1eab960ccd7aea46824a0e.zip
ci: Add exception class to problem matcher group
Otherwise, with a "KeyError: 1" we will only get "1" as message.
-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 27414a45f..32da86ebd 100644
--- a/scripts/dev/ci/problemmatchers.py
+++ b/scripts/dev/ci/problemmatchers.py
@@ -155,7 +155,7 @@ MATCHERS = {
"severity": "error",
"pattern": [
{
- "regexp": r'^\033\[1m\033\[31mE [a-zA-Z0-9.]+: ([^\033]*)\033\[0m$',
+ "regexp": r'^\033\[1m\033\[31mE ([a-zA-Z0-9.]+: [^\033]*)\033\[0m$',
"message": 1,
},
],