From 0417858afa5cb65726579640231019de2215e530 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Tue, 12 Jun 2018 15:37:00 -0400 Subject: [PATCH] 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 --- functions-common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions-common b/functions-common index b1b0995a79..25e28bd74a 100644 --- a/functions-common +++ b/functions-common @@ -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}" }