diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-01-16 09:30:12 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-01-16 09:30:12 -0500 |
commit | f58076ffbba790fd93504ea1d38e39e278e663de (patch) | |
tree | cd8ce2a4b44394cd71632df7974c62ba171d4659 /docs/doxygen | |
parent | 0aa47db21afc09b37ac4e0feebeaa624e5549714 (diff) |
docs: another hack to check for errors and retry when building the swigdocs.
Diffstat (limited to 'docs/doxygen')
-rw-r--r-- | docs/doxygen/swig_doc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/doxygen/swig_doc.py b/docs/doxygen/swig_doc.py index 95d143aab4..0148ba8fbe 100644 --- a/docs/doxygen/swig_doc.py +++ b/docs/doxygen/swig_doc.py @@ -274,7 +274,7 @@ if __name__ == "__main__": while(1): try: make_swig_interface_file(di, swigdocfilename, custom_output=custom_output) - except base.Base.NoSuchMember: + except: if(tries < 3): # May not be built just yet; sleep and try again sys.stderr.write("XML parsing problem with file {0}, retrying.\n".format( |