Jose Taza wrote:
> Bart,
>
> You are right. When I uninstall evas freevo works again!
> A bit strange though, I thought that evas was used by freevo.
>
> But finaly... it works again... :)

That is strange. Can someone with that bug please install evas again,
compile again and add some debug in kaa/display/src/init.py. There is
a line:

# import X11 support
try:
    from x11 import X11Display, X11Window, EvasX11Window
    displays.append('x11')
except ImportError, e:
    X11Display = X11Window = EvasX11Window = ImportErrorWrapper('X11')


make it

# import X11 support
try:
    from x11 import X11Display, X11Window, EvasX11Window
    displays.append('x11')
except ImportError, e:
    print 'no X11 because', e
    X11Display = X11Window = EvasX11Window = ImportErrorWrapper('X11')



Dischi

-- 
Anything labeled "NEW" and/or "IMPROVED" isn't.  The label means the
price went up.  The label "ALL NEW", "COMPLETELY NEW", or "GREAT NEW"
means the price went way up.

Attachment: pgpxRoJ6gQYAX.pgp
Description: PGP signature

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to