1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

find_sdk_tools_cmd(): s/found/not found/ in error message

This commit is contained in:
Felix C. Stegerman 2021-09-12 22:40:50 +00:00
parent 4ef8d1340f
commit 6bd8470d55

View File

@ -589,7 +589,7 @@ def find_sdk_tools_cmd(cmd):
return path return path
# did not find the command, exit with error message # did not find the command, exit with error message
test_sdk_exists(config) # ignore result so None is never returned test_sdk_exists(config) # ignore result so None is never returned
raise FDroidException(_("Android SDK tool {cmd} found!").format(cmd=cmd)) raise FDroidException(_("Android SDK tool {cmd} not found!").format(cmd=cmd))
def test_aapt_version(aapt): def test_aapt_version(aapt):