mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-03-12 20:01:08 +00:00
Fix call to super() in SimplePolicyHint
Signed-off-by: Jonathan Wiltshire <jmw@debian.org>
This commit is contained in:
parent
cd5e253b9c
commit
3156b2c753
@ -143,7 +143,7 @@ class SimplePolicyHint(Hint):
|
||||
def __eq__(self, other):
|
||||
if self.type != other.type or self._policy_parameter != other._policy_parameter:
|
||||
return False
|
||||
return super.__eq__(other)
|
||||
return super().__eq__(other)
|
||||
|
||||
def str(self):
|
||||
return '%s %s %s' % (self._type, str(self._policy_parameter), ' '.join(x.name for x in self._packages))
|
||||
|
Loading…
x
Reference in New Issue
Block a user