From c38fe56ad4332f3baf412e1a7e983303d7180088 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 20 Jul 2014 03:51:05 -0400 Subject: [PATCH] Fix edit counter link. --- earwigbot/commands/editcount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/earwigbot/commands/editcount.py b/earwigbot/commands/editcount.py index 529232a..ec0bd08 100644 --- a/earwigbot/commands/editcount.py +++ b/earwigbot/commands/editcount.py @@ -47,7 +47,7 @@ class Editcount(Command): return safe = quote_plus(user.name.encode("utf8")) - url = "http://toolserver.org/~tparis/pcount/index.php?name={0}&lang={1}&wiki={2}" + url = "http://tools.wmflabs.org/xtools/pcount/index.php?user={0}&lang={1}&wiki={2}" fullurl = url.format(safe, site.lang, site.project) msg = "\x0302{0}\x0F has {1} edits ({2})." self.reply(data, msg.format(name, count, fullurl))