From e32fe3b0c5d9e1d9525ac401b7983fb5228c512a Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 24 Aug 2004 12:10:18 +0000 Subject: [PATCH] Typos. --- plugins/Currency.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Currency.py b/plugins/Currency.py index b011751ff..9dacbc331 100644 --- a/plugins/Currency.py +++ b/plugins/Currency.py @@ -52,7 +52,7 @@ class CurrencyCommand(registry.String): m = Currency.currencyCommands if s not in m: raise registry.InvalidRegistryValue,\ - 'Command must be one of %s' % utils.commaAndify(m) + 'Command must be one of %s.' % utils.commaAndify(m) else: method = getattr(Currency, s) Currency.convert.im_func.__doc__ = method.__doc__ @@ -62,7 +62,7 @@ class Currency(callbacks.Privmsg): currencyCommands = ['xe', 'yahoo'] threaded = True - _symbolError = 'Currency must be denoted by it\'s 3-letter symbol.' + _symbolError = 'Currency must be denoted by its three-letter symbol.' def convert(self, irc, msg, args): # This specifically does not have a docstring. channel = None