Comment 2 for bug 185028

Revision history for this message
ldng (ldng) wrote :

In setup.py the following line :

eval("import %s" % i)

should be changed to :

__import__(i)

Did you actually test that code ? I don't think so as import not working
with eval seems to be a common pitfall.