]> git.donarmstrong.com Git - lilypond.git/commitdiff
* python/convertrules.py: Fix escape error in the description
authorMats Bengtsson <mats.bengtsson@s3.kth.se>
Thu, 3 Aug 2006 14:37:53 +0000 (14:37 +0000)
committerMats Bengtsson <mats.bengtsson@s3.kth.se>
Thu, 3 Aug 2006 14:37:53 +0000 (14:37 +0000)
for 2.9.6.

ChangeLog
python/convertrules.py

index 5de116073a1640c1aacbf35004752e765e560644..01efb50d05773a66c384225770a41d2fb7334c75 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
 
        * python/convertrules.py: Fix indentation bug that broke
        conversion of files older than 1.3.117.
+       Fix escape error in the description for 2.9.6.
 
 2006-08-02  Han-Wen Nienhuys  <hanwen@lilypond.org>
 
index f034d1aa6b1e179df26d4ad0030c4ac372e4ae7c..8023008962ee46af12db4b5b708a9611a815dddf 100644 (file)
@@ -2795,7 +2795,7 @@ def conv (str):
     str = re.sub (r'\\context\s+\"?([a-zA-Z]+)\"?\s*\\applyOutput', r"\\applyOutput #'\1", str)
     return str
 
-conversions.append (((2, 9, 6), conv, """\context Foo \applyOutput #bla -> \applyOutput #'Foo #bla """))
+conversions.append (((2, 9, 6), conv, """\context Foo \\applyOutput #bla -> \\applyOutput #'Foo #bla """))
 
 
 def conv (str):