Skip to content

Commit f58076f

Browse files
committedJan 16, 2012
docs: another hack to check for errors and retry when building the swigdocs.
1 parent 0aa47db commit f58076f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/doxygen/swig_doc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def make_swig_interface_file(di, swigdocfilename, custom_output=None):
274274
while(1):
275275
try:
276276
make_swig_interface_file(di, swigdocfilename, custom_output=custom_output)
277-
except base.Base.NoSuchMember:
277+
except:
278278
if(tries < 3):
279279
# May not be built just yet; sleep and try again
280280
sys.stderr.write("XML parsing problem with file {0}, retrying.\n".format(

0 commit comments

Comments
 (0)
Please sign in to comment.