##// END OF EJS Templates
Fix merge-tools.checkconflicts...
Thomas Arendsen Hein -
r12046:8e7960fe stable
parent child Browse files
Show More
@@ -225,7 +225,8 b' def filemerge(repo, mynode, orig, fcd, f'
225 225
226 226 if not r and (_toolbool(ui, tool, "checkconflicts") or
227 227 'conflicts' in _toollist(ui, tool, "check")):
228 if re.match("^(<<<<<<< .*|=======|>>>>>>> .*)$", fcd.data()):
228 if re.search("^(<<<<<<< .*|=======|>>>>>>> .*)$", fcd.data(),
229 re.MULTILINE):
229 230 r = 1
230 231
231 232 checked = False
General Comments 0
You need to be logged in to leave comments. Login now