From a504fadc4bdb2448baddc1f84f3dbf973342d918 Mon Sep 17 00:00:00 2001 From: Erlend Aasland Date: Wed, 21 Jan 2009 12:17:05 +0100 Subject: [PATCH] MusicXML: Dolet 3.5 creates broken MusicXML files --- scripts/musicxml2ly.py | 4 ++++ 1 file changed, 4 insertions(+) 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")) -- 2.39.2