Discussion:
[BitPim-devel] python 2.6 support
Ben Roberts
2009-08-10 11:50:22 UTC
Permalink
Python 2.6 has changed and object.__init__() no longer takes arbitrary
arguments. Using 2.6 just leads to constant TypeError messages

simply add a blank __init__ function to BaseProtogenClass and all is
fixed :)

prototypes.py:88

class BaseProtogenClass(object):
"""All types are derived from this"""
def __init__(self, *args, **kwargs):
"Do Nothing"

Loading...