From bc3a47fc90a4ace5da1feae2bbb300aff746b274 Mon Sep 17 00:00:00 2001 From: James Vega Date: Thu, 14 Jul 2005 12:27:54 +0000 Subject: [PATCH] plugins/Format: Fix some copy/paste errors. --- plugins/Format/plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/Format/plugin.py b/plugins/Format/plugin.py index 48bf0344d..b2a2cacb9 100644 --- a/plugins/Format/plugin.py +++ b/plugins/Format/plugin.py @@ -117,7 +117,7 @@ class Format(callbacks.Plugin): def capitalize(self, irc, msg, args, text): """ - Returns lowercased. + Returns capitalized. """ irc.reply(text.capitalize()) capitalize = wrap(capitalize, ['text']) @@ -125,7 +125,7 @@ class Format(callbacks.Plugin): def title(self, irc, msg, args, text): """ - Returns lowercased. + Returns titlecased. """ irc.reply(text.title()) title = wrap(title, ['text']) @@ -169,7 +169,7 @@ class Format(callbacks.Plugin): except IndexError: irc.errorInvalid('field') field = wrap(field, ['index', 'text']) - + def format(self, irc, msg, args): """ [ ...]