# HG changeset patch # User sylvain.thenault@logilab.fr # Date 1235088920 -3600 # Node ID 329fd038c5a36c5ff13a16e84197306fea8baffd # Parent 1b5f2068743efe81c45c4fb5a3b4b01c417ab2ab fix custom selector diff -r 1b5f2068743e -r 329fd038c5a3 web/views/eproperties.py --- a/web/views/eproperties.py Fri Feb 20 01:14:46 2009 +0100 +++ b/web/views/eproperties.py Fri Feb 20 01:15:20 2009 +0100 @@ -214,8 +214,8 @@ -def is_user_prefs(cls, req, rset, row, col): - return req.user.eid == rset[row or 0 ][col or 0] +def is_user_prefs(cls, req, rset, row=None, col=0, **kwargs): + return req.user.eid == rset[row or 0][col] class EPropertiesForm(SystemEPropertiesForm):