From: Reinhold Kainhofer Date: Fri, 7 Nov 2008 11:56:53 +0000 (+0100) Subject: MusicXML: For "Negative skip" messages, also print out the position of the problem X-Git-Tag: release/2.11.64-1~78 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7a2680ab3d082e5d7571f34bcdfdb3058f2b1fb1;p=lilypond.git MusicXML: For "Negative skip" messages, also print out the position of the problem --- diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index 113552939c..2a48cd12c1 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -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):