diff options
author | Brad King <brad.king@kitware.com> | 2014-04-18 13:08:28 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-04-18 13:08:28 (GMT) |
commit | e0790c90c04802c687042b04216fb0d11de603a7 (patch) | |
tree | 045dbff1f0d05cf951523dc33a2dfdfb88892d5a /Utilities/Sphinx/conf.py.in | |
parent | c9d13f841e5ce58ac158e4b5e35b619c0bc7aaab (diff) | |
parent | 69069cfb1ab39d3466bedce65f02aa186f4d65fd (diff) | |
download | CMake-e0790c90c04802c687042b04216fb0d11de603a7.zip CMake-e0790c90c04802c687042b04216fb0d11de603a7.tar.gz CMake-e0790c90c04802c687042b04216fb0d11de603a7.tar.bz2 |
Merge topic 'sphinx-python3'
69069cfb Utilities/Sphinx: Port documentation generation to python3 (#14886)
Diffstat (limited to 'Utilities/Sphinx/conf.py.in')
-rw-r--r-- | Utilities/Sphinx/conf.py.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/Sphinx/conf.py.in b/Utilities/Sphinx/conf.py.in index f7e4b8b..d81bbcf 100644 --- a/Utilities/Sphinx/conf.py.in +++ b/Utilities/Sphinx/conf.py.in @@ -50,7 +50,7 @@ for fpath in cmake_manuals: name, desc, [], int(sec))) else: sys.stderr.write("ERROR: No cmake-manual-description in '%s'\n" % fpath) - except Exception, e: + except Exception as e: sys.stderr.write("ERROR: %s\n" % str(e)) man_show_urls = False |