Commit c4300050 authored by Sebastien Robin's avatar Sebastien Robin

make sure to compile if parameters are changed

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@42262 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 97cbf5d3
......@@ -98,6 +98,13 @@ class PythonScript(XMLObject, ZopePythonScript):
"""
self.write(value)
def _setParameterSignature(self, value):
"""
override to call ZopePythonScript methods to force compiling code
"""
self._baseSetParameterSignature(value)
self._compile()
def _setProxyRoleList(self, value):
"""
override to call ZopePythonScript methods
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment