>From c4da6295243ff08fdff1255d4d9985b64a23bff8 Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Sun, 19 Apr 2009 20:12:42 -0700 Subject: [PATCH] Fix compile --- python/convertrules.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/python/convertrules.py b/python/convertrules.py index 2a70225..6ef4e7a 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -2900,7 +2900,7 @@ 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(r'\'dash-fraction', str) or re.search(r'\'dash-period', str): + if (re.search(r'\'dash-fraction', str) or re.search(r'\'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) -- 1.6.2.3