author | mpm@selenic.com |
Fri, 19 Aug 2005 17:22:04 -0800 | |
changeset 957 | 305ab68c4394 |
parent 956 | 16c8b36fd3c1 |
child 958 | d845a1f174bb |
--- a/mercurial/hgweb.py Fri Aug 19 17:01:11 2005 -0800 +++ b/mercurial/hgweb.py Fri Aug 19 17:22:04 2005 -0800 @@ -850,7 +850,9 @@ def entries(**map): parity = 0 - for v,r in self.cp.items("paths"): + l = self.cp.items("paths") + l.sort() + for v,r in l: cp2 = ConfigParser.SafeConfigParser() cp2.read(os.path.join(r, ".hg", "hgrc"))