From 3093ef49bcb3611e4f1e36d7599d3df3746ba5d1 Mon Sep 17 00:00:00 2001 From: Rob Blanckaert Date: Sat, 4 May 2024 20:51:21 -0700 Subject: [PATCH] Fix missing space in missing tools error message. Currently prints as `ANDROID_HOME is correct and cmdline-toolsare installed, or install NDK version` --- platform/android/detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/android/detect.py b/platform/android/detect.py index cbd61441825..6a8c4ed86d6 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -88,7 +88,7 @@ def install_ndk_if_needed(env: "SConsEnvironment"): else: print_error( f'Cannot find "{sdkmanager}". Please ensure ANDROID_HOME is correct and cmdline-tools' - f'are installed, or install NDK version "{get_ndk_version()}" manually.' + f' are installed, or install NDK version "{get_ndk_version()}" manually.' ) sys.exit(255) env["ANDROID_NDK_ROOT"] = get_android_ndk_root(env)