Skip to content

Commit 60b995a

Browse files
committed
Removed trailing $, it can cause matches to fail on Windows.
1 parent 3400d59 commit 60b995a

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
@@ -26,7 +26,7 @@ class CSSLint(Linter):
2626
# in which case there is no line/col information, so that
2727
# part is optional.
2828
(?:line\ (?P<line>\d+),\ col\ (?P<col>\d+),\ )?
29-
(?:(?P<error>error)|(?P<warning>warning))\ -\ (?P<message>.*)$
29+
(?:(?P<error>error)|(?P<warning>warning))\ -\ (?P<message>.*)
3030
'''
3131
word_re = r'^([#\.]?[-\w]+)'
3232
error_stream = util.STREAM_STDOUT

0 commit comments

Comments
 (0)