Sat, 03 Feb 2018 18:05:22 +0100
Another fix for the VCS conflict markers regexp.
Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py | file | annotate | diff | comparison | revisions |
--- a/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py Sat Feb 03 17:40:17 2018 +0100 +++ b/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py Sat Feb 03 18:05:22 2018 +0100 @@ -28,13 +28,13 @@ VcsConflictMarkerRegExpList = ( re.compile( - r"""^<<<<<<< .*?=======.*?>>>>>>> .*?$""", + r"""^<<<<<<< .*?\|\|\|\|\|\|\| .*?=======.*?>>>>>>> .*?$""", re.MULTILINE | re.DOTALL ), re.compile( - r"""^<<<<<<< .*?||||||| .*?=======.*?>>>>>>> .*?$""", + r"""^<<<<<<< .*?=======.*?>>>>>>> .*?$""", re.MULTILINE | re.DOTALL - ) + ), ) def initService():