##// END OF EJS Templates
hgweb: sort repository list
mpm@selenic.com -
r957:305ab68c default
parent child Browse files
Show More
@@ -850,7 +850,9 b' class hgwebdir:'
850
850
851 def entries(**map):
851 def entries(**map):
852 parity = 0
852 parity = 0
853 for v,r in self.cp.items("paths"):
853 l = self.cp.items("paths")
854 l.sort()
855 for v,r in l:
854 cp2 = ConfigParser.SafeConfigParser()
856 cp2 = ConfigParser.SafeConfigParser()
855 cp2.read(os.path.join(r, ".hg", "hgrc"))
857 cp2.read(os.path.join(r, ".hg", "hgrc"))
856
858
General Comments 0
You need to be logged in to leave comments. Login now