Browse code

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>

Doug Hellmann authored on 2018/06/13 04:37:00
Showing 1 changed files
... ...
@@ -2128,7 +2128,7 @@ function python_version {
2128 2128
 function python3_version {
2129 2129
     local python3_version
2130 2130
     python3_version=$(_get_python_version python3)
2131
-    echo "python${python_version}"
2131
+    echo "python${python3_version}"
2132 2132
 }
2133 2133
 
2134 2134