From 4cefec93333dbfbce518a6d98eea0e46555a421f Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 25 Mar 2025 11:36:12 +0100 Subject: [PATCH] fix missing comma in error message --- fdroidserver/publish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/publish.py b/fdroidserver/publish.py index 42eb0f6f..4c0bd791 100644 --- a/fdroidserver/publish.py +++ b/fdroidserver/publish.py @@ -453,7 +453,7 @@ def main(): if os.path.exists(signed_apk_path): 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) )