From: Mats Bengtsson Date: Thu, 3 Aug 2006 14:37:53 +0000 (+0000) Subject: * python/convertrules.py: Fix escape error in the description X-Git-Tag: release/2.10.0-2~415 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8e3450b3a53fcdb0a799d8c190deb693cf3f250f;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):