From 2554e4957db2de65283e7d9c6f23678fa212b6fc Mon Sep 17 00:00:00 2001 From: Emiliano Vavassori Date: Thu, 22 Aug 2024 22:58:27 +0200 Subject: [PATCH] Syntax error for joining list of strings. - 1 --- src/loaih/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/loaih/build.py b/src/loaih/build.py index 07256a0..2d79816 100644 --- a/src/loaih/build.py +++ b/src/loaih/build.py @@ -570,7 +570,7 @@ class Build(): # We download the missing dependencies leveraging apt subprocess.run(shlex.split( - r"apt download " + str.join(" " , debs) + r"apt download " + " ".join(debs) ), cwd=downloadpath, check=True) # then we install them inside the AppDir