From c3250954068c0bee28f9c73b3c085073af415374 Mon Sep 17 00:00:00 2001 From: Jim Hague Date: Fri, 18 Nov 2022 19:27:37 +0000 Subject: [PATCH] Switch to running abc2xml with python3. --- makeWeb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makeWeb.sh b/makeWeb.sh index 9830b9c..e15dc70 100755 --- a/makeWeb.sh +++ b/makeWeb.sh @@ -93,7 +93,7 @@ do cp $filename $tunewebdir # Generate MusicXML into the web. - python $abc2xml $filename > ${tunewebdir}/${name}.xml + python3 $abc2xml $filename > ${tunewebdir}/${name}.xml # Get date and time of last change to tune. lastchanged=`hg log --limit 1 --template "{date|shortdate}" $masterbookedir/${name}.abc`