##// END OF EJS Templates
filemerge: do what the context __bytes__ does, but locally...
Augie Fackler -
r36442:3ab9d74d default
parent child Browse files
Show More
@@ -520,8 +520,8 b' def _xmerge(repo, mynode, orig, fcd, fco'
520 520 baselabel = 'base'
521 521 env = {'HG_FILE': fcd.path(),
522 522 'HG_MY_NODE': short(mynode),
523 'HG_OTHER_NODE': str(fco.changectx()),
524 'HG_BASE_NODE': str(fca.changectx()),
523 'HG_OTHER_NODE': short(fco.changectx().node()),
524 'HG_BASE_NODE': short(fca.changectx().node()),
525 525 'HG_MY_ISLINK': 'l' in fcd.flags(),
526 526 'HG_OTHER_ISLINK': 'l' in fco.flags(),
527 527 'HG_BASE_ISLINK': 'l' in fca.flags(),
General Comments 0
You need to be logged in to leave comments. Login now