diff options
author | David Kastrup <dak@gnu.org> | 2016-03-13 23:41:37 +0100 |
---|---|---|
committer | David Kastrup <dak@gnu.org> | 2016-03-19 14:20:17 +0100 |
commit | 14bd7e660f59c1ce1373424a877a70ec576a93d3 (patch) | |
tree | 71cb3a44dc3127d0a419dd3fb0bc053abf25d256 /scripts | |
parent | 34917fefd1167f963c44fbcf47ab7f4184fc4cdc (diff) |
Issue 4799: Let musicxml2py generate current override/revert syntax
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/musicxml2ly.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index 5cf53339a4..b1cc496f6e 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -331,7 +331,7 @@ def staff_attributes_to_lily_staff (mxl_attr): staff = musicexp.Staff () # TODO: Handle case with lines <> 5! if (lines != 5): - staff.add_context_modification ("\\override StaffSymbol #'line-count = #%s" % lines) + staff.add_context_modification ("\\override StaffSymbol.line-count = #%s" % lines) return staff |