Stephan Richter writes:
> + # Check whether there is an explicit message is specified
> + default = None
> + if v.startswith('[]'):
> + v = v[3:]
Actually, I'd suggest this assignment:
v = v[2:].lstrip()
-Fred
--
Fred L. Drake, Jr. <fred at zope.com>
PythonLabs at Zope Corporation