Hi, Am 20.11.19 um 01:00 schrieb Aaron Hill: > "SKIP: %s\n" % `e`
2to3 is the way to go as others said before. In this particular case, rather than calling repr, the standard solution would be: "SKIP: %r\n" % e as %r uses the repr-form while %s the str-form. Cheers, Joram _______________________________________________ bug-lilypond mailing list bug-lilypond@gnu.org https://lists.gnu.org/mailman/listinfo/bug-lilypond