=== modified file 'bin/tools/convert.py' --- bin/tools/convert.py 2010-03-30 13:15:37 +0000 +++ bin/tools/convert.py 2010-03-31 07:17:41 +0000 @@ -397,9 +397,12 @@ def ref(str_id): return self.id_get(cr, None, str_id) - context=eval(context) - domain=eval(domain) - + try: + context=eval(context) + domain=eval(domain) + except: + pass + res = { 'name': name, 'type': type,