From 413f6c840b339a1b0ccf43216576173088bb83e6 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 16 Jul 2011 23:38:36 -0400 Subject: [PATCH] saying user is redundant - removing --- irc/commands/rights.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/commands/rights.py b/irc/commands/rights.py index d456952..31d9437 100644 --- a/irc/commands/rights.py +++ b/irc/commands/rights.py @@ -29,7 +29,7 @@ class Rights(BaseCommand): username = ' '.join(data.args) rights = self.get_rights(username) if rights: - self.connection.reply(data, "the rights for user \x0302{0}\x0301 are {1}.".format(username, ', '.join(rights))) + self.connection.reply(data, "the rights for \x0302{0}\x0301 are {1}.".format(username, ', '.join(rights))) else: self.connection.reply(data, "the user \x0302{0}\x0301 has no rights, or does not exist.".format(username))