Removed a dumb valueerror.

This commit is contained in:
Jeremy Fincher 2004-10-26 19:09:43 +00:00
parent e378b34138
commit 39ab3459de
1 changed files with 0 additions and 2 deletions

View File

@ -416,8 +416,6 @@ class FormatParser(object):
context.bg = self.getInt()
def wrap(s, length):
if length < 100:
raise ValueError, 'Use ircutils.wrap with a length greater than 100.'
processed = []
chunks = textwrap.wrap(s, length)
context = None