From 39ab3459de5e14fcd0087459d35d9cc5bd7984d5 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 26 Oct 2004 19:09:43 +0000 Subject: [PATCH] Removed a dumb valueerror. --- src/ircutils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ircutils.py b/src/ircutils.py index a2b2b4222..260aa3ea0 100644 --- a/src/ircutils.py +++ b/src/ircutils.py @@ -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