Skip to content

Commit

Permalink
fix: use python3 instead of python in unittest.bash (#3382)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan authored Apr 1, 2022
1 parent 5bf3782 commit b74d12d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ if [ "$UNAME" = "linux" ] || [[ "$UNAME" =~ msys_nt* ]]; then
else
function timestamp() {
# OS X and FreeBSD do not have %N so python is the best we can do
python -c 'import time; print int(round(time.time() * 1000))'
python3 -c 'import time; print(int(round(time.time() * 1000)))'
}
fi

Expand Down

0 comments on commit b74d12d

Please sign in to comment.