I'm not sure if I'm crazy or what but I'm running into a compile error when trying to save a script for a Gateway Event.
Crazy thing it I'm positive I was not getting this error running on 8.3.2. Then I upgraded to 8.3.7 and went into the script to add something and when I try to close & save I get a compile error.
The other crazy thing is that I don't think I should be getting a compile error because the error is complaining about indent and my indent looks fine to me.
Since the code is on the long side I tried just creating a short piece of code to see if is still a problem and it seems it is.
So here's the error:
And here's the test code:
def onTagChange(initialChange, newValue, previousValue, event, executionCount):
if initialChange == False:
myPrinter = system.print.getDefaultPrinterName()
But if I change the code to the following it compiles just fine:
def onTagChange(initialChange, newValue, previousValue, event, executionCount):
if initialChange == False:
myPrinter = system.print.getDefaultPrinterName()
To me it looks like there's an additional indent there for no reason. Anything after works fine.
Have I missed something/done something stupid, or did I discover a weird bug or something?
