]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/musicxml.py
Merge branch 'issue4614' into HEAD
[lilypond.git] / python / musicxml.py
index d03d116de7607718b2b0fa9c8a79a0d403d8339a..6eb3b45aba21ca1aa89a0fc7fdf96373b649d4aa 100644 (file)
@@ -12,7 +12,7 @@ _ = ly._
 
 def escape_ly_output_string (input_string):
     return_string = input_string
-    needs_quotes = not re.match (u"^[a-zA-ZäöüÜÄÖß,\.!:ñ]*$", return_string);
+    needs_quotes = not re.match (u"^[a-zA-ZäöüÜÄÖßñ]*$", return_string);
     if needs_quotes:
         return_string = "\"" + string.replace (return_string, "\"", "\\\"") + "\""
     return return_string