diff options
author | Uwe L. Korn <uwelk@xhochy.com> | 2014-04-18 09:57:31 +0100 |
---|---|---|
committer | Alex Merry <alex.merry@kde.org> | 2014-04-18 09:57:31 +0100 |
commit | 038802898de36647fa02cfcaab95472b3cb45c9b (patch) | |
tree | 3aaa090c1b724d85c49f2deaabd79b923b059937 /docs/sphinx/conf.py.in | |
parent | 9bbdd1615b484c229657fd0896b2dbebdea9988d (diff) | |
download | extra-cmake-modules-038802898de36647fa02cfcaab95472b3cb45c9b.tar.gz extra-cmake-modules-038802898de36647fa02cfcaab95472b3cb45c9b.tar.bz2 |
Make documentation generation python3 compatible
REVIEW: 117624
Diffstat (limited to 'docs/sphinx/conf.py.in')
-rw-r--r-- | docs/sphinx/conf.py.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/sphinx/conf.py.in b/docs/sphinx/conf.py.in index 24ba82c8..792c87ca 100644 --- a/docs/sphinx/conf.py.in +++ b/docs/sphinx/conf.py.in @@ -50,7 +50,7 @@ for fpath in ecm_manuals: name, desc, [], int(sec))) else: sys.stderr.write("ERROR: No ecm-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 |