summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@xs4all.nl>2007-01-08 13:54:45 +0100
committerHan-Wen Nienhuys <hanwen@xs4all.nl>2007-01-08 13:54:45 +0100
commitead577367dd8f5dbd1c0bb59e2f3fc8b78c3a6fa (patch)
treef9a435c3e13f7af43c0852395dad85d219f7093c
parent2a9d5803b8feca93ea57f69f9cc68cf83c49d6a9 (diff)
Don't barf on negative skips.
-rw-r--r--scripts/musicxml2ly.py3
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()