From 2a770f1f774d0a0a58808d9eef0f2f87e9870f5c Mon Sep 17 00:00:00 2001 From: erickson Date: Fri, 4 Jan 2008 22:13:33 +0000 Subject: [PATCH] logging error for now instead of throwing exception git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@8323 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/python/oils/utils/idl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/python/oils/utils/idl.py b/Open-ILS/src/python/oils/utils/idl.py index 0a4428a76a..6c91aafb70 100644 --- a/Open-ILS/src/python/oils/utils/idl.py +++ b/Open-ILS/src/python/oils/utils/idl.py @@ -164,8 +164,8 @@ class IDLClass(object): return [f for f in self.fields if f.name == field_name][0] except: msg = "No field '%s' in IDL class '%s'" % (field_name, self.name) - #osrf.log.log_error(msg) - raise IDLException(msg) + osrf.log.log_error(msg) + #raise IDLException(msg) class IDLField(object): def __init__(self, idl_class, **kwargs): -- 2.11.0