Skip to content

Commit 0417858

Browse files
committed
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>
1 parent aed9300 commit 0417858

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

functions-common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2128,7 +2128,7 @@ function python_version {
21282128
function python3_version {
21292129
local python3_version
21302130
python3_version=$(_get_python_version python3)
2131-
echo "python${python_version}"
2131+
echo "python${python3_version}"
21322132
}
21332133

21342134

0 commit comments

Comments
 (0)