[email protected] schrieb am 12.03.05 12:36:29:
File "/usr/local/freevo/src/tv/record_types.py", line 69, in addProgram print 'addProgram: actually adding "%s"' % String(prog)
Thats the line we should change. Try experimenting with the "String(prog)" part. I am thinking it should be fine like it is but that's the voodoo black magic nature of unicode bugs! Try changing String(prog) to prog.decode(). I hope that works... If not then I have to refresh my memory on how we were fixing these ones.
...
Thanks a lot for your fast help. But unfortunately we still have that problem. Even the error messages are still the same...
So if you have another idea what I can try?
Well since it's failing on a DEBUG message that particular problem will go away if you set DEBUG back to 0. If you would like to keep debuf on just comment out that print line and put a 'pass' statement in its place:
# print 'addProgram: actually adding "%s"' % String(prog)
passIf you'd like you can continue tring to debug the actual unicode problem but I'm not sure how to really fix it, maybe String(prog.decode())... sorry!
-Rob
------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Freevo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-devel
