Hi,
I think I’m right on this, but double check me
The “Maxwell.py” file in the Maxwell plugins directory, lines #387-388, should read:
executable = ""
arguments = ""
instead of:
Executable = ""
Arguments = ""
Also, lines #385-386 are not required as they get initialised in “def init( self, executable, arguments ):”
minor issue.
Mike
Hey Mike,
That’s not a typo. In the RenderExecutable and RenderArgument functions, we use self.Executable and self.Arguments respectively.
Also, the lines #385-386 are there to simply define those class properties and initialize them with a default value. We probably don’t need to reinitialize them in the init function, but it’s not doing any harm.
Cheers,