Commit 87176d50 authored by Jérome Perrin's avatar Jérome Perrin

fix typo in previous commit


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@16772 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent fd441a48
...@@ -771,7 +771,7 @@ class ERP5Form(ZMIForm, ZopePageTemplate): ...@@ -771,7 +771,7 @@ class ERP5Form(ZMIForm, ZopePageTemplate):
for key, value in _dict.items(): for key, value in _dict.items():
if value=='': if value=='':
continue continue
if isinstance((value, Method): if isinstance(value, Method):
value = Method(value.method_name) value = Method(value.method_name)
elif isinstance(value, TALESMethod): elif isinstance(value, TALESMethod):
value = TALESMethod(value._text) value = TALESMethod(value._text)
......
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