summaryrefslogtreecommitdiff
path: root/bin/menus-build.sh
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2023-02-07 17:30:13 +0100
committeremkael <emkael@tlen.pl>2023-02-07 17:30:13 +0100
commit13e5db0637204b9164ed5cab4cef129505548407 (patch)
tree7ff1c97ac01a256c9dc3f4bbc269e06b33096376 /bin/menus-build.sh
parent79d084a1222062df47528b8340a83ef679735267 (diff)
Python 2.x -> 3.x conversion
Diffstat (limited to 'bin/menus-build.sh')
-rwxr-xr-xbin/menus-build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/menus-build.sh b/bin/menus-build.sh
index 0ac3a92..1a5c2a9 100755
--- a/bin/menus-build.sh
+++ b/bin/menus-build.sh
@@ -5,5 +5,5 @@ mkdir -p $DIRECTORY/players
find $DIRECTORY -type d -not -name _\* |
while read HTMLDIR
do
- python scripts/menus-compile.py $CONFIG_FILE $DIRECTORY $HTMLDIR > $HTMLDIR/.menu.html
+ python3 scripts/menus-compile.py $CONFIG_FILE $DIRECTORY $HTMLDIR > $HTMLDIR/.menu.html
done