Duncan-
once again getting issues with convert_config. Now when I try to get
the list of options using --help I get the default freevo help on
Freevo 1.9.0. I have finally had a chance to ge the new Freevo 1.9
and updated Kaa packages built for Slackware 12.1 ( should work on all
the 12.x series
On Wed, 2009-06-17 at 17:16 +0200, Duncan Webb wrote:
> When length = 'None' should be a ValueError, when length = None should
> be a TypeError.
>>> 0 + 'foo'
Traceback (most recent call last):
File "", line 1, in
TypeError: unsupported operand type(s) for +: 'int' and 'str'
Am I misunderstand
Jason Tackaberry wrote:
> On Tue, 2009-06-16 at 19:17 +0200, Duncan Webb wrote:
>> +try:
>> +total += length
>> +except ValueError:
>> +_debug_('Invalid length: %r' % (length,))
>
> Shouldn't it be TypeError?