[Freevo-devel] convert_config help broken

2009-06-17 Thread Evan Hisey
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

Re: [Freevo-devel] [Freevo-cvslog] r11593 - branches/rel-1/freevo/src/video tags/REL-1_9_1/freevo/src/video

2009-06-17 Thread Jason Tackaberry
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

Re: [Freevo-devel] [Freevo-cvslog] r11593 - branches/rel-1/freevo/src/video tags/REL-1_9_1/freevo/src/video

2009-06-17 Thread Duncan Webb
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?