Hi Russell, On 11.06.07, Russell Steicke wrote:
While playing music today, I noticed a bug in display of album names. They were displayed without capitalisation changes. The problem is in md_pp_capitalize(). It creates a local variable called mdalbum instead of modifying md.album.
Thanks for catching that.
Here are two patches: one to fix that bug, and another to apply on top of that, instead of the first one I sent a couple of hours ago. Both against svn version 282.
There is a small problem with that one, though: If you don't use the C locale, string.letters may also contain non-ASCII characters and then "s in string.letters" fails for any Unicode string. In the present case this means it fails always. This seems to be one of the cases where Python's unicode support is still lacking... Cheers, Jörg