[Epydoc-commits] SF.net SVN: epydoc: [1715] trunk/epydoc/src/epydoc/docstringparser.py
Brought to you by:
edloper
|
From: <ed...@us...> - 2008-02-13 19:19:49
|
Revision: 1715
http://epydoc.svn.sourceforge.net/epydoc/?rev=1715&view=rev
Author: edloper
Date: 2008-02-13 11:19:47 -0800 (Wed, 13 Feb 2008)
Log Message:
-----------
Fixed a bug that caused exceptions to propagate when reading a
metadata variable failed.
Modified Paths:
--------------
trunk/epydoc/src/epydoc/docstringparser.py
Modified: trunk/epydoc/src/epydoc/docstringparser.py
===================================================================
--- trunk/epydoc/src/epydoc/docstringparser.py 2008-02-02 06:31:52 UTC (rev 1714)
+++ trunk/epydoc/src/epydoc/docstringparser.py 2008-02-13 19:19:47 UTC (rev 1715)
@@ -322,7 +322,7 @@
if field.multivalue and not value:
try: value = epydoc.docparser.parse_string_list(val_doc.toktree)
except KeyboardInterrupt: raise
- except: raise
+ except: pass
# Add any values that we found.
for elt in value:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|