From 9e29351173d47e915797b75c40224387c5e2b391 Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer Date: Mon, 22 Feb 2010 13:52:05 +0100 Subject: [PATCH] MusicXML: correctly escape backslash inside a string --- python/musicexp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/musicexp.py b/python/musicexp.py index 695f540db3..1303af2655 100644 --- a/python/musicexp.py +++ b/python/musicexp.py @@ -1036,7 +1036,7 @@ class GlissandoEvent (SpanEvent): "wavy" : "zigzag" }. get (self.line_type, None) if style: - printer.dump ("\once \override Glissando #'style = #'%s" % style) + printer.dump ("\\once \\override Glissando #'style = #'%s" % style) def ly_expression (self): return {-1: '\\glissando', 1:''}.get (self.span_direction, '') -- 2.39.2