fix typo in python3_version

The function was using an undefined variable to show the version of
python3 being used.

Change-Id: Ibc956975d620ed5174de8823f9c202a680c56aaf
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-06-12 15:37:00 -04:00
parent aed9300b71
commit 0417858afa
1 changed files with 1 additions and 1 deletions

View File

@ -2128,7 +2128,7 @@ function python_version {
function python3_version {
local python3_version
python3_version=$(_get_python_version python3)
echo "python${python_version}"
echo "python${python3_version}"
}