diff options
author | John Gourlay <john@weathervanefarm.net> | 2016-03-15 16:41:26 -0400 |
---|---|---|
committer | John Gourlay <john@weathervanefarm.net> | 2016-03-15 16:41:26 -0400 |
commit | 6676553f94d1224a9956a43b4b5a3e4777bb47ce (patch) | |
tree | 1a3b70f273d2626818e2e0aee53c3a5279b5bb8b /python | |
parent | 42b6a1852760ac7f46ce894e82a64bbe6c2cff70 (diff) |
In musicexp.py generate "Staff.keyAlterations" rather than "Staff.keySignature".
In musicxml2ly.py store the LilyPond version in one variable, lilypond_version.
Diffstat (limited to 'python')
-rw-r--r-- | python/musicexp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/musicexp.py b/python/musicexp.py index c2c2b1b60d..e32c4895e6 100644 --- a/python/musicexp.py +++ b/python/musicexp.py @@ -1817,7 +1817,7 @@ class KeySignatureChange (Music): elif self.non_standard_alterations: alterations = [self.format_non_standard_alteration (a) for a in self.non_standard_alterations] - return "\\set Staff.keySignature = #`(%s)" % string.join (alterations, " ") + return "\\set Staff.keyAlterations = #`(%s)" % string.join (alterations, " ") else: return '' |