diff -r 32a2a1e244f1 -r a1a5a57efe90 mercurial/hgweb/hgwebdir_mod.py --- a/mercurial/hgweb/hgwebdir_mod.py Sun Apr 26 16:50:44 2009 -0500 +++ b/mercurial/hgweb/hgwebdir_mod.py Sun Apr 26 16:50:44 2009 -0500 @@ -38,7 +38,7 @@ self.repos = cleannames(conf) self.repos_sorted = ('', False) elif isinstance(conf, dict): - self.repos = util.sort(cleannames(conf.items())) + self.repos = sorted(cleannames(conf.items())) else: if isinstance(conf, config.config): cp = conf