wikifirc

filter irc.wikimedia.org on specific pages and users
git clone https://a3nm.net/git/wikifirc/
Log | Files | Refs | README

commit 6a0fb584898c1db4726c36c1de3a0445b66d1366
parent 4e643b799f0187263837328e09af374a8b7d0df7
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Tue, 15 Nov 2016 11:57:48 +0100

fix bug

Diffstat:
wikifirc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wikifirc b/wikifirc @@ -151,7 +151,7 @@ if __name__ == "__main__": # do not follow special pages special = False for special_namespace in special_namespaces: - if line.page.startswith(special): + if line.page.startswith(special_namespace): special = True if not special: print("== I started to follow page %s" % line.page)