merge: refactor labels selection code
The code is simplified to prepare the future introduction of a third labels for
the merge base.
--- a/mercurial/filemerge.py Tue Jul 01 23:08:17 2014 +0200
+++ b/mercurial/filemerge.py Mon Jun 09 23:37:36 2014 -0700
@@ -388,16 +388,13 @@
ui.debug("my %s other %s ancestor %s\n" % (fcd, fco, fca))
markerstyle = ui.config('ui', 'mergemarkers', 'basic')
- if markerstyle == 'basic':
- formattedlabels = _defaultconflictlabels
- else:
- if not labels:
- labels = _defaultconflictlabels
-
- formattedlabels = _formatlabels(repo, fcd, fco, labels)
+ if not labels:
+ labels = _defaultconflictlabels
+ if markerstyle != 'basic':
+ labels = _formatlabels(repo, fcd, fco, labels)
needcheck, r = func(repo, mynode, orig, fcd, fco, fca, toolconf,
- (a, b, c, back), labels=formattedlabels)
+ (a, b, c, back), labels=labels)
if not needcheck:
if r:
if onfailure: