1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

Merge branch 'obfusk-master-patch-89864' into 'master'

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

See merge request fdroid/fdroidserver!1016
This commit is contained in:
Hans-Christoph Steiner 2021-09-13 10:49:33 +00:00
commit 04ac629bd2

View File

@ -589,7 +589,7 @@ def find_sdk_tools_cmd(cmd):
return path
# did not find the command, exit with error message
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):