diff options
Diffstat (limited to 'lib/compilers/clean.js')
-rw-r--r-- | lib/compilers/clean.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/clean.js b/lib/compilers/clean.js index 30456963d..d50b82be6 100644 --- a/lib/compilers/clean.js +++ b/lib/compilers/clean.js @@ -49,7 +49,7 @@ class CleanCompiler extends BaseCompiler { return utils.splitLines(output).map(line => { let matches = line.match(errorRegex); if (matches) { - return "<source>:" + matches[1] + ",0: error: (" + matches[2] + ") " + matches[3]; + return "<source>:" + matches[1] + ",0: error: " + matches[2]; } else { matches = line.match(errorLineRegex); if (matches) { |