From 1163d28e719f3f563bb83d4e40cb1e3874dd929f Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Sat, 5 Sep 2020 18:56:01 -0300 Subject: [PATCH] Added "Not " prefix to negation filter names. --- kibot/fil_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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