diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2007-01-08 13:54:45 +0100 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2007-01-08 13:54:45 +0100 |
commit | ead577367dd8f5dbd1c0bb59e2f3fc8b78c3a6fa (patch) | |
tree | f9a435c3e13f7af43c0852395dad85d219f7093c | |
parent | 2a9d5803b8feca93ea57f69f9cc68cf83c49d6a9 (diff) |
Don't barf on negative skips.
-rw-r--r-- | scripts/musicxml2ly.py | 3 |
1 files changed, 2 insertions, 1 deletions
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() |