X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/63f3b77711f17de3cd3515d1a97f566438c551a7..3b16ad256b097d7e910682bf7708bb4f2f135ebe:/src/app/musicxml.py diff --git a/src/app/musicxml.py b/src/app/musicxml.py index 9302118..ec3be4a 100755 --- a/src/app/musicxml.py +++ b/src/app/musicxml.py @@ -244,7 +244,7 @@ class Tone(object) : def name(self) : name = '%s%d' % (self.step, self.octave) if self.alter < 0 : - alterext = 'b' + alterext = '♭' else : alterext = '#' name = '%s%s' % (name, abs(self.alter) * alterext) @@ -254,10 +254,10 @@ class Tone(object) : def nom(self) : name = FR_NOTES[self.step] if self.alter < 0 : - alterext = 'b' + alterext = u'♭' else : - alterext = '#' - name = '%s%s' % (name, abs(self.alter) * alterext) + alterext = u'#' + name = u'%s%s' % (name, abs(self.alter) * alterext) return name