Commit 2940ae21 authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed bug with tag blacklisting.

parent 2779a86c
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -238,9 +238,8 @@ class CCServer(object):
                deny.clear()
            elif tag.startswith('-'):
                tag = tag[1:]
                if to_show is None:
                deny.add(tag)
                elif tag in to_show:
                if tag in to_show:
                    to_show.remove(tag)

        if to_show is None: