+2005-03-27 Han-Wen Nienhuys <hanwen@xs4all.nl>
+
+ * scripts/abc2ly.py (dump_voices): use alphabet().
+
2005-03-25 Graham Percival <gperlist@shaw.ca>
* Documentation/topdocs/INSTALL.texi: now recommends
ks.sort ()
for k in ks:
if re.match('[1-9]', k):
- m = chr(string.atoi(k) + ord ('A'))
+ m = alphabet(string.atoi(k))
else:
m = k
for i in range (len(slyrics[voice_idx_dict[k]])):
ks.sort ()
for k in ks:
if re.match ('[1-9]', k):
- m = chr(string.atoi(k) + ord ('A'))
+ m = alphabet(string.atoi(k))
else:
m = k
outf.write ("\nvoice%s = {" % m)