Jim,

 

I got this error too.

 

An internal error occured.  Please report all output from the program,
including the following traceback, to the PyKDE mailing list


Traceback (most recent call last):
File "./configure.py", line 792, in ?
main(sys.argv)
File "./configure.py", line 756, in main
init_and_check_sanity ()
File "./configure.py", line 153, in init_and_check_sanity
sipcfg.error("This version of PyKDE requires SIP v%s or later" % sipcfg.version_to_string(minv))
File "/usr/lib/python2.3/site-packages/sipconfig.py", line 163, in __getattr__
raise AttributeError, "\"%s\" is not a valid configuration value or user option" % name
AttributeError: "error" is not a valid configuration value or user option

 

 

To fix this please goto the line:

 

            if minv:

                        sipcfg.error("This version of PyKDE requires SIP v%s or later" % sipcfg.version_to_string(minv))

 

and change to:

 

if minv:

                        # sipcfg.error("This version of PyKDE requires SIP v%s or later" % sipcfg.version_to_string(minv))

                        pass

 

After this I got everything to work.  Please let me know if this works.

 

Thanks,

 

Charles

      

 

_______________________________________________
PyKDE mailing list    [EMAIL PROTECTED]
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Reply via email to