From 4ff9aba5d9e912d563d82a3147eafe885de32b37 Mon Sep 17 00:00:00 2001 From: Anders Blomdell <anders.blomdell@control.lth.se> Date: Fri, 26 Apr 2013 12:59:58 +0100 Subject: [PATCH] Version 2013-04-26 13:59 --- src/mio/rpmDB.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mio/rpmDB.py b/src/mio/rpmDB.py index 4e97622..242a6c7 100755 --- a/src/mio/rpmDB.py +++ b/src/mio/rpmDB.py @@ -14,7 +14,7 @@ class RPM: pass def __eq__(self, other): - return (self.__class__ == other.__class__, + return (self.__class__ == other.__class__ and self.name == other.name and self.arch == other.arch and self.version == other.version and -- GitLab