From 22372903e1de6ad7afc503b527cc9cd7a0eec953 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Fri, 25 Feb 2022 15:39:31 -0300 Subject: [PATCH] [appimage] fix: removed attribute reference --- bauh/gems/appimage/controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bauh/gems/appimage/controller.py b/bauh/gems/appimage/controller.py index 38bdc38f..f3016908 100644 --- a/bauh/gems/appimage/controller.py +++ b/bauh/gems/appimage/controller.py @@ -115,7 +115,7 @@ class AppImageManager(SoftwareManager): else: return False - appim = AppImage(i18n=self.i18n, imported=True, custom_actions=self.custom_app_actions) + appim = AppImage(i18n=self.i18n, imported=True) appim.name = input_name.get_value().strip() appim.local_file_path = file_chooser.file_path appim.version = input_version.get_value() @@ -762,7 +762,7 @@ class AppImageManager(SoftwareManager): cursor.execute(query.FIND_APPS_BY_NAME_FULL.format(','.join([f"'{s}'" for s in sugs_map.keys()]))) for t in cursor.fetchall(): - app = AppImage(*t, i18n=self.i18n, custom_actions=self.custom_app_actions) + app = AppImage(*t, i18n=self.i18n) res.append(PackageSuggestion(app, sugs_map[app.name.lower()])) self.logger.info(f"Mapped {len(res)} suggestions") except: