From 8a131c0b648f484e8efee374db3882b0b42bbcd3 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Fri, 12 Jun 2020 18:10:25 -0300 Subject: [PATCH] [fix][appimage] considering all AppImages with no local paths equal --- bauh/gems/appimage/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/gems/appimage/model.py b/bauh/gems/appimage/model.py index 1a1dbf86..ebee4f9b 100644 --- a/bauh/gems/appimage/model.py +++ b/bauh/gems/appimage/model.py @@ -117,4 +117,4 @@ class AppImage(SoftwarePackage): def __eq__(self, other): if isinstance(other, AppImage): - return self.local_file_path == other.local_file_path + return self.name == other.name and self.local_file_path == other.local_file_path