]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/musicxml2ly.py
MusicXML: For "Negative skip" messages, also print out the position of the problem
[lilypond.git] / scripts / musicxml2ly.py
index 113552939cabb870da23c87dfde21ea652563148..2a48cd12c13f2cc752620ad31da23853e9ca68a9 100644 (file)
@@ -1623,7 +1623,8 @@ class LilyPondVoiceBuilder:
         diff = moment - current_end
         
         if diff < Rational (0):
-            error_message (_ ('Negative skip %s') % diff)
+            error_message (_ ('Negative skip %s (from position %s to %s)') % 
+                             (diff, current_end, moment))
             diff = Rational (0)
 
         if diff > Rational (0) and not (self.ignore_skips and moment == 0):