Commit 3cd6dc0b authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

_property_dict is also useful for visualising MovementGroup.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@21553 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b8ccc6c9
......@@ -210,6 +210,8 @@ class RootMovementGroup:
def __repr__(self):
repr_str = '<%s object at 0x%x\n' % (self.__class__.__name__, id(self))
if getattr(self, '_property_dict', None) is not None:
repr_str += ' _property_dict = %r,\n' % self._property_dict
if self._movement_list:
repr_str += ' _movement_list = %r,\n' % self._movement_list
if self._group_list:
......
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