For the moment, documentation_parser.py is a python2 script

This commit is contained in:
Laurent Rineau 2021-08-10 13:11:42 +02:00
parent 5b6f3abac2
commit c9780d93e4
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ FAILURES=()
for dir in $PATH_TO_DOC/*
do
OUTPUT=$(basename $dir)
python ../documentation_parser.py $dir/xml > ./"$OUTPUT.txt"
python2 ../documentation_parser.py $dir/xml > ./"$OUTPUT.txt"
if [ $? -eq 0 ]; then
echo "$dir OK"
else