Error using nxusBookMachine.py in Max

Hey, I'm wondering if it's just me but I'm having some serious issues getting this particular python file to load up with the MaxPlugin.
I'm using Max 7 with Cyan's original release of their plugin. The log files show that it's having a syntax error with
The error is with the argument parenthesis in AgeInstance():. if I remove them then it passes to the next class which throws up the same error. So if I remove all of them with the exception of the main class "nxuxBookMachine(ptModifier)" it works fine except then it gets an error that it can't find datetime.py.
I'm using Max 7 with Cyan's original release of their plugin. The log files show that it's having a syntax error with
- Code: Select all
class AgeInstance():
def __init__(self, ageData):
self.ageInfo = ageData[0]
self.population = ageData[1]
self.owners = ageData[2]
The error is with the argument parenthesis in AgeInstance():. if I remove them then it passes to the next class which throws up the same error. So if I remove all of them with the exception of the main class "nxuxBookMachine(ptModifier)" it works fine except then it gets an error that it can't find datetime.py.