Hi, just wanted to report a bug I found. Movie.py needs to change this
line (at 301 for version 3.4):
if person.currentRole: n += ' (%s)' % person
to this:
if person.currentRole: n += ' (%s)' %
unicode(person.currentRole)
Otherwise you can get errors like this:
Traceback (most recent call last):
File "build\bdist.win32\egg\imdb\Movie.py", line 317, in summary
File "build\bdist.win32\egg\imdb\Movie.py", line 301, in _nameAndRole
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 4:
ordinal not in range(128)
The movie I saw this with was "Ping Pong (2002)", but I suspect any
movie with foreign characters for people's names would have the same
problem.
Clark Bassett
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Imdbpy-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/imdbpy-devel