]> git.donarmstrong.com Git - lilypond.git/commitdiff
Remove unneeded parentheses from convert rule
authorCarl Sorensen <c_sorensen@byu.edu>
Tue, 21 Apr 2009 21:29:03 +0000 (15:29 -0600)
committerCarl Sorensen <c_sorensen@byu.edu>
Tue, 21 Apr 2009 21:29:03 +0000 (15:29 -0600)
python/convertrules.py

index 6ee7d0cee27baa4d1a822c2633dedfff5a520cca..ee2b13cb80155c4d47647b2b5f762cb3ec471d5d 100644 (file)
@@ -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)