From 2eea8c637f74c53b4b257defae0998be752d1db1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Calonne?= <aurel@nexedi.com> Date: Mon, 6 Feb 2006 13:14:53 +0000 Subject: [PATCH] fix return of the render_view method git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@5579 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5Form/ProxyField.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product/ERP5Form/ProxyField.py b/product/ERP5Form/ProxyField.py index d31b7d169f..0856087410 100755 --- a/product/ERP5Form/ProxyField.py +++ b/product/ERP5Form/ProxyField.py @@ -123,7 +123,7 @@ class ProxyWidget(Widget.Widget): for k, v in field.get_value('extra_context'): extra_context[k] = v REQUEST.other['erp5_extra_context'] = extra_context - return proxy_field.widget.render_view(proxy_field, key, value) + return proxy_field.widget.render_view(proxy_field, value) class ProxyValidator(Validator.Validator): -- 2.30.9