hgweb: sort repository list

This commit is contained in:
mpm@selenic.com 2005-08-19 17:22:04 -08:00
parent f0ae86293f
commit bc11f47499

View File

@ -850,7 +850,9 @@ class hgwebdir:
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"))