From b0a6da8b363e9d5a7478edc17c579fc07e880d2c Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 21 Jul 2012 00:48:35 -0400 Subject: [PATCH] Ignore fishbowl wikis, because we can't log in to them. --- pages/copyvios.mako | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/copyvios.mako b/pages/copyvios.mako index 32520de..3db7430 100644 --- a/pages/copyvios.mako +++ b/pages/copyvios.mako @@ -155,7 +155,7 @@ for site in matrix.itervalues(): if isinstance(site, list): # Special sites for special in site: - if "closed" not in special and "private" not in special: + if "closed" not in special and "private" not in special and "fishbowl" not in special: full = urlparse(special["url"]).netloc if full.count(".") == 1: # No subdomain, so use "www" lang, project = "www", full.split(".")[0]