From: Reinhold Kainhofer Date: Fri, 24 Aug 2007 22:49:10 +0000 (+0200) Subject: musicxml: if no work-number or opus is found, return an empty string. X-Git-Tag: release/2.11.32-1~7 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=31040fa5b108f5400cc15468611c694e964a613c;p=lilypond.git musicxml: if no work-number or opus is found, return an empty string. --- diff --git a/python/musicxml.py b/python/musicxml.py index 2056805aee..12cc62a777 100644 --- a/python/musicxml.py +++ b/python/musicxml.py @@ -88,7 +88,7 @@ class Work (Xml_node): if wt: return wt.get_text () else: - return self.get_text () + return '' def get_work_title (self): return self.get_work_information ('work-title')