From 16e4444cbf16aa2e91923458460a782c70e386ed Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Mon, 22 Oct 2007 01:21:25 -0200 Subject: [PATCH] strip MusicXML from examples.html --- buildscripts/mutopia-index.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildscripts/mutopia-index.py b/buildscripts/mutopia-index.py index c73481aaba..57a9a3f3d5 100644 --- a/buildscripts/mutopia-index.py +++ b/buildscripts/mutopia-index.py @@ -199,6 +199,8 @@ for d in dirs: allfiles = allfiles + find ('*.ly', d) allfiles = filter (lambda x: not x.endswith ('snippet-map.ly') and not re.search ('lily-[0-9a-f]+', x), allfiles) +allfiles = filter (lambda x: 'musicxml' not in x, allfiles) + gen_list (allfiles, outfile) -- 2.39.5