fix missing comma in error message

This commit is contained in:
Hans-Christoph Steiner 2025-03-25 11:36:12 +01:00
parent d9046727e5
commit 4cefec9333
No known key found for this signature in database
GPG Key ID: 3E177817BA1B9BFA

View File

@ -453,7 +453,7 @@ def main():
if os.path.exists(signed_apk_path): if os.path.exists(signed_apk_path):
raise BuildException( raise BuildException(
_( _(
"Refusing to sign '{path}' file exists in both {dir1} and {dir2} folder." "Refusing to sign '{path}', file exists in both {dir1} and {dir2} folder."
).format(path=apkfilename, dir1=unsigned_dir, dir2=output_dir) ).format(path=apkfilename, dir1=unsigned_dir, dir2=output_dir)
) )