I am trying to run a Python script using the Run Script action. The build log indicates the action completed, but it doesn't seem to actually be doing anything. Just as a simple test, in the OnExecute event I tried:
print "Hello World!"
The output doesn't appear in the build log. What should I expect to happen?
I next tried:
print 1/0
This should generate a "div by 0" error, but again nothing seems to happen.
.Do you have any suggestions? I am running FinalBuilder Pro 7.0.0.3368.
Hi Jim,
The print function has not been overloaded in our script framework. If you wish to write to the build log you can use the following script.
Action.SendLogMessage(“hello”)
Also if you wish to see a divide by zero error assigning the value to a variable will produce what your looking for.
x = 3/0