Submitter | phabricator |
---|---|
Date | Aug. 16, 2019, 9:03 a.m. |
Message ID | <differential-rev-PHID-DREV-ked3q67gz2lixduk6yie-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/41307/ |
State | Superseded |
Headers | show |
Comments
This revision now requires changes to proceed. av6 added a comment. av6 requested changes to this revision. The changes in tests that this patch causes are actually already present in the D6709 <https://phab.mercurial-scm.org/D6709>, so let's fold this patch into it as well. REPOSITORY rHG Mercurial CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6730/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6730 To: navaneeth.suresh, #hg-reviewers, av6 Cc: av6, mercurial-devel
navaneeth.suresh added a comment.
navaneeth.suresh abandoned this revision.
In D6730#98852 <https://phab.mercurial-scm.org/D6730#98852>, @av6 wrote:
> The changes in tests that this patch causes are actually already present in the D6709 <https://phab.mercurial-scm.org/D6709>, so let's fold this patch into it as well.
Okay. Folded and updated D6709 <https://phab.mercurial-scm.org/D6709>. Abandoning this.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D6730/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D6730
To: navaneeth.suresh, #hg-reviewers, av6
Cc: av6, mercurial-devel
Patch
diff --git a/mercurial/ui.py b/mercurial/ui.py --- a/mercurial/ui.py +++ b/mercurial/ui.py @@ -792,6 +792,8 @@ itemdefault = item.default() else: itemdefault = item.default + if itemdefault and isinstance(itemdefault, list): + itemdefault = ' '.join(itemdefault) return itemdefault def hasconfig(self, section, name, untrusted=False):