##// END OF EJS Templates
fixed sorting of repos with big letters
marcink -
r222:f7dadd35 default
parent child Browse files
Show More
@@ -47,7 +47,7 b' class HgModel(object):'
47
47
48 tmp_d = {}
48 tmp_d = {}
49 tmp_d['name'] = mercurial_repo.name
49 tmp_d['name'] = mercurial_repo.name
50 tmp_d['name_sort'] = tmp_d['name']
50 tmp_d['name_sort'] = tmp_d['name'].lower()
51 tmp_d['description'] = mercurial_repo.description
51 tmp_d['description'] = mercurial_repo.description
52 tmp_d['description_sort'] = tmp_d['description']
52 tmp_d['description_sort'] = tmp_d['description']
53 tmp_d['last_change'] = last_change
53 tmp_d['last_change'] = last_change
General Comments 0
You need to be logged in to leave comments. Login now