Comment 20 for bug 321176

Revision history for this message
Gustavo Carneiro (gjc) wrote :

It seems to be a python issue, but only when dealing with legacy/deprecated classes. It would not be hard to fix the applications; where you see:

class Foo:
    ...

Change it to:

class Foo(object):
   ...

And the problem should go away.