Port lupdate script to Python 3.

This commit is contained in:
Roman Telezhynskyi 2021-03-30 20:43:19 +03:00
parent 24b6fcc4ce
commit 2d8ec0eaae

View file

@ -43,7 +43,7 @@ do
done done
end=$(date +%s) end=$(date +%s)
runtime=$(python -c "print 'Time passed %u:%02u seconds' % ((${end} - ${start})/60, (${end} - ${start})%60)") runtime=$(python -c "print('Time passed %u:%02u seconds' % ((${end} - ${start})/60, (${end} - ${start})%60))")
echo $runtime echo $runtime
echo For updating files run: build all. echo For updating files run: build all.