From: Mats Bengtsson Date: Thu, 3 Aug 2006 14:37:54 +0000 (+0000) Subject: * python/convertrules.py: Fix escape error in the description X-Git-Tag: cvs/HEAD~192 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=82560a0662409fe04f0d843ef9ff7eab1e3fe581;p=lilypond.git * python/convertrules.py: Fix escape error in the description for 2.9.6. --- diff --git a/ChangeLog b/ChangeLog index 5de116073a..01efb50d05 100644 --- 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 diff --git a/python/convertrules.py b/python/convertrules.py index f034d1aa6b..8023008962 100644 --- a/python/convertrules.py +++ b/python/convertrules.py @@ -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):