Im making a very simple python script within
zope.
It has only one parameter and all it does is
add 1 to the param value:
a = param
b = a + 1
return (a)
The problem is (I guess) that 'param' isnt a Int
value, how can I "say" to zope that it is?
Thanks for the help!!