diff options
author | Georg Brandl <georg@python.org> | 2008-02-01 20:44:17 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-01 20:44:17 +0000 |
commit | b2ec05e690aa2870967ed188ac9a3be0b0fd8db6 (patch) | |
tree | b250499a21cd2db4748cb1a0102e882120878a5e /sphinx-build.py | |
parent | 8ca7c9144317ca8ce1b1f29383174a884ac910b3 (diff) | |
download | sphinx-git-b2ec05e690aa2870967ed188ac9a3be0b0fd8db6.tar.gz |
More refactoring, this time allowing different file extensions
and a different master file. Also fix environment warning reporting
and improve handling of error conditions.
Diffstat (limited to 'sphinx-build.py')
-rw-r--r-- | sphinx-build.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sphinx-build.py b/sphinx-build.py index ecd6febe5..7c305e3d9 100644 --- a/sphinx-build.py +++ b/sphinx-build.py @@ -11,10 +11,4 @@ import sys if __name__ == '__main__': from sphinx import main - try: - sys.exit(main(sys.argv)) - except Exception: - import traceback - traceback.print_exc() - import pdb - pdb.post_mortem(sys.exc_traceback) + sys.exit(main(sys.argv)) |