Sat, 03 Feb 2018 17:40:17 +0100
Fix for the second conflict markers regexp.
Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py | file | annotate | diff | comparison | revisions |
--- a/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py Sat Feb 03 17:34:19 2018 +0100 +++ b/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheck.py Sat Feb 03 17:40:17 2018 +0100 @@ -32,7 +32,7 @@ re.MULTILINE | re.DOTALL ), re.compile( - r"""^<<<<<<< .*?||||||| .?=======.*?>>>>>>> .*?$""", + r"""^<<<<<<< .*?||||||| .*?=======.*?>>>>>>> .*?$""", re.MULTILINE | re.DOTALL ) )