Commit 80b9b9e1 authored by Jean-Paul Smets's avatar Jean-Paul Smets

LOG provides traceback


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1235 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ce54cba0
...@@ -41,7 +41,6 @@ from AccessControl import Unauthorized, getSecurityManager, ClassSecurityInfo ...@@ -41,7 +41,6 @@ from AccessControl import Unauthorized, getSecurityManager, ClassSecurityInfo
from Products.ERP5Type.Utils import UpperCase from Products.ERP5Type.Utils import UpperCase
import psyco import psyco
import sys
# Patch the fiels methods to provide improved namespace handling # Patch the fiels methods to provide improved namespace handling
...@@ -91,7 +90,7 @@ class ERP5Field(Field): ...@@ -91,7 +90,7 @@ class ERP5Field(Field):
except: except:
# We add this safety exception to make sure we always get # We add this safety exception to make sure we always get
# something reasonable rather than generate plenty of errors # something reasonable rather than generate plenty of errors
LOG('ERP5Form.get_value, exception on tales_expr: ',0,'',error=sys.exc_info()) LOG('ERP5Form.get_value, exception on tales_expr: ',0,'')
value = self.get_orig_value(id) value = self.get_orig_value(id)
else: else:
# FIXME: backwards compat hack to make sure overrides dict exists # FIXME: backwards compat hack to make sure overrides dict exists
...@@ -152,7 +151,7 @@ class ERP5Field(Field): ...@@ -152,7 +151,7 @@ class ERP5Field(Field):
value = REQUEST.form[key] value = REQUEST.form[key]
except (KeyError, AttributeError): except (KeyError, AttributeError):
# fall back on default # fall back on default
return self.get_value('default',REQUEST=REQUEST) # The request was missing on Formulator return self.get_value('default',REQUEST=REQUEST) # It was missing on Formulator
# if we enter a string value while the field expects unicode, # if we enter a string value while the field expects unicode,
# convert to unicode first # convert to unicode first
......
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