From ead577367dd8f5dbd1c0bb59e2f3fc8b78c3a6fa Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Mon, 8 Jan 2007 13:54:45 +0100 Subject: [PATCH] Don't barf on negative skips. --- scripts/musicxml2ly.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index 66774fa672..431a43631c 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -264,7 +264,8 @@ class LilyPondVoiceBuilder: diff = moment - current_end if diff < Rational (0): - raise NegativeSkip(current_end, moment) + print 'Negative skip', diff + diff = Rational (0) if diff > Rational (0): skip = musicexp.SkipEvent() -- 2.39.5