# HG changeset patch # User Stephanie Marcu # Date 1263899954 -3600 # Node ID 83d245d3343667ba10b74b4bb8bf5102c046444a # Parent b45a3563c6bb93b1c9b71678080c8ec6f999ff1e we should access to __regid__ instead of id since in that case bw compat fail: access to id throuhg a class returns the property object instead of calling the property's method diff -r b45a3563c6bb -r 83d245d33436 web/views/iprogress.py --- a/web/views/iprogress.py Tue Jan 19 12:17:22 2010 +0100 +++ b/web/views/iprogress.py Tue Jan 19 12:19:14 2010 +0100 @@ -87,7 +87,7 @@ def header_for_milestone(self, ecls): """use entity's type as label""" - return display_name(self._cw, ecls.id) + return display_name(self._cw, ecls.__regid__) def table_header(self, ecls): """builds the table's header"""