From: <bov...@us...> - 2006-12-19 01:24:10
|
Revision: 1308 http://svn.sourceforge.net/pywebsvcs/?rev=1308&view=rev Author: boverhof Date: 2006-12-18 17:24:09 -0800 (Mon, 18 Dec 2006) Log Message: ----------- M ZSI/TC.py -- need to look for TypeError when parsing using Union Modified Paths: -------------- trunk/zsi/ZSI/TC.py Modified: trunk/zsi/ZSI/TC.py =================================================================== --- trunk/zsi/ZSI/TC.py 2006-12-19 01:21:50 UTC (rev 1307) +++ trunk/zsi/ZSI/TC.py 2006-12-19 01:24:09 UTC (rev 1308) @@ -1538,7 +1538,7 @@ try: content = typecode.get_formatted_content(copy.copy(pyobj)) break - except ParseException, ex: + except (ParseException, TypeError): pass if indx > 0: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |