From: Carl Sorensen Date: Tue, 21 Apr 2009 21:33:53 +0000 (-0600) Subject: fix convert rule X-Git-Tag: release/2.13.1-1~37^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b075394a11d0d44cdee799b0e5ba7e23785a3486;p=lilypond.git fix convert rule --- diff --git a/python/convertrules.py b/python/convertrules.py index ee2b13cb80..7d97a417da 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -2900,8 +2900,8 @@ def conv(str): stderr_write (NOT_SMART % _("\\bar \".\" now produces a thick barline.\n")) stderr_write (UPDATE_MANUALLY) str = re.sub (r'ly:hairpin::after-line-breaking', r'ly:spanner::kill-zero-spanned-time', str) - if re.search("(Slur|Tie)\w+\#\'dash-fraction", str) \ - or re.search("(Slur|Tie)\w+\#\'dash-period", str): + if re.search("(Slur|Tie)\w+#\'dash-fraction", str) \ + or re.search("(Slur|Tie)\w+#\'dash-period", str): stderr_write ("\n") stderr_write (NOT_SMART % _("Dash parameters for slurs and ties are now in \'dash-details.\n")) stderr_write (UPDATE_MANUALLY)