Browse Source

Use the uppercase letter to index songs title.

remotes/origin/translate_notes
Alexandre Dupas 15 years ago
parent
commit
a721cacb8a
  1. 2
      songbook-makeindex.py

2
songbook-makeindex.py

@ -27,7 +27,7 @@ class index:
letter = firstLetterPattern.match(key).group(1)
if re.match('\d',letter):
letter = '0-9'
return (letter, key)
return (letter.upper(), key)
def keyword(self, key, word):
if not self.keywords.has_key(key):

Loading…
Cancel
Save