X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/3ad1f5540aa20e5b8132ededc367d8f319b2d5dd..19e1b120e85f3cf3906c640af47c5084b09dd3be:/lib/python/Plugins/Plugin.py diff --git a/lib/python/Plugins/Plugin.py b/lib/python/Plugins/Plugin.py index 0378ce4c..4b5b7e2a 100644 --- a/lib/python/Plugins/Plugin.py +++ b/lib/python/Plugins/Plugin.py @@ -44,3 +44,6 @@ class PluginDescriptor: self.icon = loadPNG(path + self.iconstr) else: self.icon = None + + def __eq__(self, other): + return self.__call__ == other.__call__