diff --git a/kibot/fil_base.py b/kibot/fil_base.py index 67499310..bf3dfe10 100644 --- a/kibot/fil_base.py +++ b/kibot/fil_base.py @@ -56,7 +56,7 @@ class NotFilter(Registrable): """ A filter that returns the inverted result """ def __init__(self, filter): super().__init__() - self.name = filter.name + self.name = 'Not '+filter.name self.type = '!'+filter.type self.comment = filter.comment self._filter = filter