Comment 2 for bug 597998

Revision history for this message
David Wagner (daw-bugzilla) wrote :

It's not fully fixed for me. As of r3520, I get this:

$ make clean; make
find . -name "*.~[0-9]~" -exec rm -f {} \;
find . -name "*.py[co]" -exec rm -f {} \;
find po/* -depth -type d -exec rm -r {} \;
rm -f exaile.1.gz
make -C plugins clean
make[1]: Entering directory `/home/daw/e/exaile03/plugins'
find . -name "*.py[co]" -exec rm -f {} \;
make[1]: Leaving directory `/home/daw/e/exaile03/plugins'
python -m compileall -q xl xlgui
Compiling xlgui/actions/_base.py ...
SyntaxError: ('invalid syntax', ('xlgui/actions/_base.py', 130, 29, ' gobject.TYPE_INT,\n'))

make: *** [compile] Error 1

Looking at it more closely, I suspect the syntax error is in this line:

        'active-choice': {

I suspect that should be:

        'active-choice': (

In other words, open-parenthesis instead of open-curly-brace.