Submitter | phabricator |
---|---|
Date | March 3, 2022, 9:23 p.m. |
Message ID | <differential-rev-PHID-DREV-mdstmihpj4ycnv3b4twv-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/50675/ |
State | New |
Headers | show |
Comments
Patch
diff --git a/mercurial/templatekw.py b/mercurial/templatekw.py --- a/mercurial/templatekw.py +++ b/mercurial/templatekw.py @@ -685,7 +685,7 @@ d = {b'name': k} if len(ps) == 1: d[b'url'] = ps[0].rawloc - sub_opts = pycompat.iteritems(ps[0].suboptions) + sub_opts = ps[0].suboptions.items() sub_opts = util.sortdict(sorted(sub_opts)) d.update(sub_opts) path_dict = util.sortdict()