From b891f2f6f4a2ecd310e8aa7f058b10fe5e5c0d53 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 8 Jul 2012 16:19:42 -0400 Subject: [PATCH] Try \x0F --- earwigbot/commands/editcount.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/earwigbot/commands/editcount.py b/earwigbot/commands/editcount.py index f7dc9ad..2c6e5b1 100644 --- a/earwigbot/commands/editcount.py +++ b/earwigbot/commands/editcount.py @@ -42,12 +42,12 @@ class Editcount(Command): try: count = user.editcount except exceptions.UserNotFoundError: - msg = "the user \x0302{0}\x0399 does not exist." + msg = "the user \x0302{0}\x0F does not exist." self.reply(data, msg.format(name)) return safe = quote_plus(user.name.encode("utf8")) url = "http://toolserver.org/~tparis/pcount/index.php?name={0}&lang={1}&wiki={2}" fullurl = url.format(safe, site.lang, site.project) - msg = "\x0302{0}\x0399 has {1} edits ({2})." + msg = "\x0302{0}\x0F has {1} edits ({2})." self.reply(data, msg.format(name, count, fullurl))