Commit 0118d93f authored by Julien Muchembled's avatar Julien Muchembled

SimulationLegacyPatches: fix AttributeError

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41684 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c6673f0e
......@@ -73,7 +73,10 @@ def patch():
## SimulationMovement
from Products.ERP5.Document.SimulationMovement import SimulationMovement
del SimulationMovement.isFrozen
try:
del SimulationMovement.isFrozen
except AttributeError:
pass
def isCompleted(self):
"""Zope publisher docstring. Documentation in ISimulationMovement"""
......
8
\ No newline at end of file
9
\ No newline at end of file
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