Btw, pylint reveals (among many other things) 27 warnings about: W1401: Anomalous backslash in string: '\m'. String constant might be missing an r prefix. (anomalous-backslash-in-string)
which shows that backslashes are not placed properly. In the case of `\m` this is interpreted as `\\m` but in cases of `\n` it is a new line. As discussed elsewhere, it is very far from PEP8 standards. +-----------+-------+ |type |number | +===========+=======+ |convention |1176 | +-----------+-------+ |refactor |9 | +-----------+-------+ |warning |45 | +-----------+-------+ |error |465 | +-----------+-------+ _______________________________________________ bug-lilypond mailing list bug-lilypond@gnu.org https://lists.gnu.org/mailman/listinfo/bug-lilypond