Submitter | phabricator |
---|---|
Date | Feb. 13, 2019, 12:16 p.m. |
Message ID | <9601bb010dd6750a90158c62533ac14e@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/38711/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -4985,9 +4985,8 @@ if hasconflictmarkers: ui.warn(_('warning: the following files still have conflict ' - 'markers:\n ') + - '\n '.join(uipathfn(f) for f in hasconflictmarkers) + - '\n') + 'markers:\n') + ''.join(' ' + uipathfn(f) + '\n' + for f in hasconflictmarkers)) if markcheck == 'abort' and not all and not pats: raise error.Abort(_('conflict markers detected'), hint=_('use --all to mark anyway'))