From: Erlend Aasland Date: Wed, 21 Jan 2009 11:17:05 +0000 (+0100) Subject: MusicXML: Dolet 3.5 creates broken MusicXML files X-Git-Tag: release/2.12.2-1~4^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a504fadc4bdb2448baddc1f84f3dbf973342d918;p=lilypond.git MusicXML: Dolet 3.5 creates broken MusicXML files --- diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index 4256ea0504..ac5bd787a5 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -341,6 +341,10 @@ def extract_score_information (tree): if "Dolet 3.4 for Sibelius" in software: conversion_settings.ignore_beaming = True progress (_ ("Encountered file created by Dolet 3.4 for Sibelius, containing wrong beaming information. All beaming information in the MusicXML file will be ignored")) + # ditto for Dolet 3.5 + if "Dolet 3.5 for Sibelius" in software: + conversion_settings.ignore_beaming = True + progress (_ ("Encountered file created by Dolet 3.5 for Sibelius, containing wrong beaming information. All beaming information in the MusicXML file will be ignored")) if "Noteworthy Composer" in software: conversion_settings.ignore_beaming = True progress (_ ("Encountered file created by Noteworthy Composer's nwc2xml, containing wrong beaming information. All beaming information in the MusicXML file will be ignored"))