X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=python%2Fmusicexp.py;h=440fcbfb3f1c12c87957c79b2f204f95b2efcf0f;hb=0ee1001b75c5fa2e7bc2cb14147d30716a4a7fe7;hp=b1df9417f7531cfadcddf8bd72f9cd87d6852ccd;hpb=791d2a229662aac907cf9a26d8a93df8c857cb53;p=lilypond.git diff --git a/python/musicexp.py b/python/musicexp.py index b1df9417f7..440fcbfb3f 100644 --- a/python/musicexp.py +++ b/python/musicexp.py @@ -892,10 +892,10 @@ class BarLine (Music): self.type = None def print_ly (self, printer): - bar_symbol = { 'regular': "|", 'dotted': ":", 'dashed': ":", + 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: