From: Reinhold Kainhofer Date: Fri, 31 Jul 2009 12:07:47 +0000 (+0200) Subject: MusicXML: Use correct bar line for short X-Git-Tag: release/2.13.4-1~243 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=90dc262715cb5d0f55f95c7f3a53ba406c201f91;p=lilypond.git MusicXML: Use correct bar line for short --- diff --git a/python/musicexp.py b/python/musicexp.py index 9ebdb70a00..b13c9ac201 100644 --- a/python/musicexp.py +++ b/python/musicexp.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- import inspect import sys import string @@ -907,7 +908,7 @@ class BarLine (Music): bar_symbol = { 'regular': "|", 'dotted': ":", 'dashed': "dashed", 'heavy': "|", 'light-light': "||", 'light-heavy': "|.", 'heavy-light': ".|", 'heavy-heavy': ".|.", 'tick': "'", - 'short': "'|", 'none': "" }.get (self.type, None) + 'short': "'", 'none': "" }.get (self.type, None) if bar_symbol <> None: printer.dump ('\\bar "%s"' % bar_symbol) else: