From 727c9f171abec26a4824cfa742205cb23943fc88 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Tue, 12 Oct 2010 18:23:48 +0200 Subject: [PATCH] [IMP] labelling of read field on res.log bzr revid: xmo@openerp.com-20101012162348-94jbd5ufwgh1cm5c --- bin/addons/base/res/res_log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/addons/base/res/res_log.py b/bin/addons/base/res/res_log.py index 8d5f501..e475f2f 100644 --- a/bin/addons/base/res/res_log.py +++ b/bin/addons/base/res/res_log.py @@ -33,7 +33,7 @@ class res_log(osv.osv_memory): 'res_id': fields.integer('Object ID'), 'secondary': fields.boolean('Secondary Log', help='Do not display this log if it belongs to the same object the user is working on'), 'create_date': fields.datetime('Created Date', readonly=True), - 'read': fields.boolean('Read status', help="If this log item has been read, get() should not send it to the client") + 'read': fields.boolean('Read', help="If this log item has been read, get() should not send it to the client") } _defaults = { 'user_id': lambda self,cr,uid,ctx: uid, -- 1.7.10.4