Skip to content

Commit 9badb90

Browse files
Update bindings/Sofa/package/prefab.py
Co-authored-by: Alex Bilger <[email protected]>
1 parent 1550607 commit 9badb90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bindings/Sofa/package/prefab.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def __init__(self, *args, **kwargs):
110110
docstring += "\n:param " + p['name'] + ": " + p['help'] + ", defaults to " + str(p.get('default', '')) + '\n:type ' + p['name'] + ": " + p['type'] + "\n\n"
111111

112112
if hasattr(self, "properties"):
113-
Sofa.Helper.msg_deprecated(self, "properties has been replace with prefabParameters. Please update your code.")
113+
Sofa.Helper.msg_deprecated(self, "'properties' has been replaced with 'prefabParameters'. Please update your code.")
114114
docstring += "Prefab's (properties):"
115115
for p in self.properties:
116116
self.addPrefabParameter(name=p['name'], type=p['type'], help=p['help'], default=kwargs.get(p['name'], p.get('default', None)))

0 commit comments

Comments
 (0)