From 87cf0aa064f44babecc55879eb179e466fd51f6b Mon Sep 17 00:00:00 2001 From: Carl Sorensen Date: Tue, 11 Jan 2011 13:33:31 -0700 Subject: [PATCH] musicxml2ly.py -- change default for string tuning from integer to pitch --- scripts/musicxml2ly.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index a14119b320..8a1132cab9 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -358,7 +358,7 @@ def staff_attributes_to_string_tunings (mxl_attr): if staff_lines: lines = string.atoi (staff_lines.get_text ()) - tunings = [0]*lines + tunings = [musicexp.Pitch()]*lines staff_tunings = details.get_named_children ('staff-tuning') for i in staff_tunings: p = musicexp.Pitch() -- 2.39.5