##// END OF EJS Templates
templatekw: remove pycompat.iteritems()...
Gregory Szorc -
r49785:e6df205a default
parent child Browse files
Show More
@@ -685,7 +685,7 b' def showpeerurls(context, mapping):'
685 685 d = {b'name': k}
686 686 if len(ps) == 1:
687 687 d[b'url'] = ps[0].rawloc
688 sub_opts = pycompat.iteritems(ps[0].suboptions)
688 sub_opts = ps[0].suboptions.items()
689 689 sub_opts = util.sortdict(sorted(sub_opts))
690 690 d.update(sub_opts)
691 691 path_dict = util.sortdict()
General Comments 0
You need to be logged in to leave comments. Login now