From 168201913e297b31c1495903990b5e6eb13dce84 Mon Sep 17 00:00:00 2001 From: John Mandereau Date: Mon, 20 Apr 2009 12:40:48 +0200 Subject: [PATCH] Remove extra parenthesis (fix compilation) --- python/convertrules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/convertrules.py b/python/convertrules.py index 2a70225232..96cb3ab476 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) -- 2.39.5