Peter Svensson wrote:
>  OK :) Sorry I misunderstood you. Here come the three files I have in the
> folder. Note that the .raw file is created during/before a crash, so may be
> really weird.

No, the raw file is ok. Aubin: this may also fix your problem, because
it's a basic problem in osd.py:

I checked in a new version. In osd.py _getbitmap is a checking if the
file ends with .raw. Before that, we check if filename
isinstance(str). That's not enough, your filename is unicode. So the
fix is:

|if (isinstance(filename, str) or isinstance(filename, unicode) \
|   and filename.endswith('raw'):

>
>>     return image != self.image
>> UnicodeDecodeError: 'ascii' codec can't decode byte 0xe4 in position
> 62:
>
> Not again :-(
>
> I hate this unicode/string stuff. Can you send me the exact filename
> please. 
>
>> build
>>     if i.id() == selected_id:
>> UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 in position
> 7:
>> ordinal not in range(128)

I didn't see this bug, maybe it's automaticly gone.


Dischi

-- 
According to my calculations the problem doesn't exist.


-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to