From 8e3450b3a53fcdb0a799d8c190deb693cf3f250f Mon Sep 17 00:00:00 2001
From: Mats Bengtsson <mats.bengtsson@s3.kth.se>
Date: Thu, 3 Aug 2006 14:37:53 +0000
Subject: [PATCH] 	* python/convertrules.py: Fix escape error in the
 description 	for 2.9.6.

---
 ChangeLog              | 1 +
 python/convertrules.py | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

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  <hanwen@lilypond.org>
 
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):
-- 
2.39.5