Skip to content

Commit

Permalink
Fixed bug with group number.
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderkid committed Aug 22, 2017
1 parent a895383 commit 92b194d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputmon.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def start(cls, project, line):
label=m.group(1),
filename=m.group(2),
lineno=int(m.group(3)),
message=m.group(4))
message=m.group(5))

def __init__(self, project, line, label, filename, lineno, message):
AbstractErrorParser.__init__(self, project, line, filename, lineno, message)
Expand Down

0 comments on commit 92b194d

Please sign in to comment.