Slight doc/style updates.

This commit is contained in:
Jeremy Fincher 2004-07-28 16:42:39 +00:00
parent 6886a88d5c
commit bfa2382aae
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
###
"""
Enforcer: Enforces capabilities on a channel, watching MODEs, KICKs,
Enforces capabilities on a channel, watching MODEs, KICKs,
JOINs, etc. to make sure they match the channel's config. Also handles
auto-opping, auto-halfopping, or auto-voicing, as well as cycling an otherwise
empty channel in order to get ops.

View File

@ -479,7 +479,7 @@ class IrcString(str):
def __init__(self, s):
assert isinstance(s, basestring), \
'Cannot make an IrcString from %s' % type(s)
'Cannot make an IrcString from %r' % s
self.lowered = toLower(s)
def __eq__(self, s):