jenkins-bot has submitted this change and it was merged.
Change subject: WOW Wiki subdomains hr, ro & sr deleted ......................................................................
WOW Wiki subdomains hr, ro & sr deleted
WOW Wiki subdomains hr, ro & sr now redirect to the main Wikia sites' 'Community Central:Not a valid Wikia' page.
Fixed super init call.
Change-Id: Ibfe29e28504776f85e5531fe20dfcc0e54288bc1 --- M pywikibot/families/wowwiki_family.py 1 file changed, 5 insertions(+), 5 deletions(-)
Approvals: Merlijn van Deen: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/families/wowwiki_family.py b/pywikibot/families/wowwiki_family.py index b675001..11c319e 100644 --- a/pywikibot/families/wowwiki_family.py +++ b/pywikibot/families/wowwiki_family.py @@ -12,10 +12,13 @@
"""Family class for WOW Wiki."""
+ name = 'wowwiki' + + interwiki_removals = ['hr', 'ro', 'sr'] + def __init__(self): """Constructor.""" - family.Family.__init__(self) - self.name = 'wowwiki' + super(Family, self).__init__()
self.langs = { 'cs': 'cs.wow.wikia.com', @@ -28,7 +31,6 @@ 'fi': 'fi.wow.wikia.com', 'fr': 'fr.wowwiki.com', 'he': 'he.wow.wikia.com', - 'hr': 'hr.wow.wikia.com', 'hu': 'hu.wow.wikia.com', 'is': 'is.wow.wikia.com', 'it': 'it.wow.wikia.com', @@ -41,10 +43,8 @@ 'pl': 'pl.wow.wikia.com', 'pt': 'pt.wow.wikia.com', 'pt-br': 'pt-br.wow.wikia.com', - 'ro': 'ro.wow.wikia.com', 'ru': 'ru.wow.wikia.com', 'sk': 'sk.wow.wikia.com', - 'sr': 'sr.wow.wikia.com', 'sv': 'sv.warcraft.wikia.com', 'tr': 'tr.wow.wikia.com', 'zh-tw': 'zh-tw.wow.wikia.com',