Skip to content

Commit e222883

Browse files
committed
Fix regex to match msg-template
1 parent bdaff8c commit e222883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Pylint(PythonLinter):
3030
version_re = r'^pylint (?P<version>\d+\.\d+\.\d+),'
3131
version_requirement = '>=1.0'
3232
regex = (
33-
r'^(?P<line>\d+):(?P<col>\d+): '
33+
r'^(?P<line>\d+):(?P<col>\d+):'
3434
r'(?:(?P<error>[RFE])|(?P<warning>[CIW]))\d+:'
3535
r'(?P<message>.*)'
3636
)

0 commit comments

Comments
 (0)