From 98914ffd9eac19db2fa009125e36014f1069cf35 Mon Sep 17 00:00:00 2001 From: sanjayk03-dev Date: Fri, 7 Jun 2024 04:23:00 +0530 Subject: [PATCH] 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 f2a557a..a11e67a 100644 --- a/src/py/bbctrl/Web.py +++ b/src/py/bbctrl/Web.py @@ -626,7 +626,7 @@ class MacrosDownloadHandler(bbctrl.APIHandler): filepath = self.get_upload(filename) zip_file.write(filepath, filename) - config_path = self.ctrl.get_path('config.json') + config_path = self.get_path('config.json') try: if os.path.exists(config_path): zip_file.write(config_path,'config.json')