From f9289dcdc011cb7977338f145875fa96f5562691 Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer Date: Mon, 8 Dec 2008 22:44:28 +0100 Subject: [PATCH] MusicXML: Fix single-number time sigs --- python/musicexp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/musicexp.py b/python/musicexp.py index cab3c8d67f..6f181c1980 100644 --- a/python/musicexp.py +++ b/python/musicexp.py @@ -1489,7 +1489,7 @@ class TimeSignatureChange (Music): st = "\\defaultTimeSignature" elif (self.style != "'()"): st = "\\once \\override Staff.TimeSignature #'style = #%s " % self.style - if (self.style != "'()") or is_common_signature: + elif (self.style != "'()") or is_common_signature: st = "\\numericTimeSignature" # Easy case: self.fractions = [n,d] => normal \time n/d call: -- 2.39.2