From 2a731e1a467b97524ce4a67a68f1193aa339b973 Mon Sep 17 00:00:00 2001 From: sanjayk03-dev Date: Mon, 3 Jun 2024 20:10:49 +0530 Subject: [PATCH] bug fix --- src/py/bbctrl/Web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/py/bbctrl/Web.py b/src/py/bbctrl/Web.py index 98245aa..113b919 100644 --- a/src/py/bbctrl/Web.py +++ b/src/py/bbctrl/Web.py @@ -615,7 +615,7 @@ class MacrosDownloadHandler(bbctrl.APIHandler): if not filename: raise HTTPError(400, 'Missing filename') files = filename.split(',') - self.get_log('Macros Download').info('files ' + files.join(' ')) + self.get_log('Macros Download').info('files ' + ",".join(files)) buffer = io.BytesIO() zip_file = zipfile.ZipFile(buffer, mode="w")