Commit 454ce29a authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed bug introduced by last commit :-(

parent 2940ae21
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -239,7 +239,7 @@ class CCServer(object):
            elif tag.startswith('-'):
                tag = tag[1:]
                deny.add(tag)
                if tag in to_show:
                if to_show is not None and tag in to_show:
                    to_show.remove(tag)

        if to_show is None: