From bd95764f9f6901d4c84d6c913b3f0ef3eab7696a Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 6 Jan 2011 22:12:19 -0600 Subject: [PATCH] cleanup the sentence feedback --- modules/Alias.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/Alias.py b/modules/Alias.py index e2104b7..55d4a87 100644 --- a/modules/Alias.py +++ b/modules/Alias.py @@ -42,14 +42,14 @@ class Alias(Module): self.config.add_section(self.__class__.__name__) self.config.set(self.__class__.__name__, whats[2], ' '.join(whats[3:])) - replystr = 'added alias ' + whats[2] + replystr = 'Added alias ' + whats[2] + '.' return self.reply(connection, replypath, replystr) if whats[0] == '!alias' and whats[1] == 'remove' and len(whats) >= 3: if not self.config.has_section(self.__class__.__name__): self.config.add_section(self.__class__.__name__) if self.config.remove_option(self.__class__.__name__, whats[2]): - replystr = 'removed alias ' + whats[2] + replystr = 'Removed alias ' + whats[2] + '.' return self.reply(connection, replypath, replystr) elif whats[0] == '!alias' and whats[1] == 'list': try: