Nerys next: L'Inconnu de Limoise.

No chords. Also fix up title field display to not put a space between
items if 'The' item isn't all alphanumeric. So , L' works.
This commit is contained in:
Jim Hague 2017-09-24 23:12:03 +01:00
parent 2477b37976
commit a38378712a
2 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,11 @@
X: 1
T: Inconnu de Limoise, L'
C: Maxou Heintzen
M: 3/4
L: 1/8
Q: 1/4=104
K: G
D GA | B2 BB (3cBA | B3 B cd | c2 cB AG | A2 D2 GA |
B2 BB (3cBA | B3 B cd |c2 cB AG | A3 :|
B cd | e2 gf ef | d2 dc BA | GF GA BG | D4 GF |
E2 EF GA | G2F2 E2 | [1 F2 FG AB | A3 :| [2 FE FG AB | G3 |]

View File

@ -137,7 +137,9 @@ def convertTitleToDisplay(t):
if p[1] == "": if p[1] == "":
return t return t
else: else:
return p[2].strip() + " " + p[0].strip() first = p[2].strip()
second = p[0].strip()
return (first + " " if first.isalnum() else first) + second
# Convert Key field from ABC to display, so G#dor->G# Dorian. # Convert Key field from ABC to display, so G#dor->G# Dorian.
def convertKeyToDisplay(t): def convertKeyToDisplay(t):