diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-10-07 12:09:18 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-10-07 12:09:18 -0400 |
commit | a629ecb8abe816ffc50a435eb386f075754908da (patch) | |
tree | 69a862cbaae31b4c34c5ccc6507f3edff2ea764b /doc/conf.py | |
parent | 32e8008a5d99b3f5bfe6a6a220eec5c4f730ba43 (diff) | |
download | python-coveragepy-git-a629ecb8abe816ffc50a435eb386f075754908da.tar.gz |
Sphinx complains about app.info now, and what's wrong with print?
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/doc/conf.py b/doc/conf.py index 4c37c29d..757bf64e 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -186,13 +186,9 @@ spelling_show_suggestions = False # into the class docs. autoclass_content = "class" - - - - prerelease = bool(max(release).isalpha()) def setup(app): app.add_stylesheet('coverage.css') app.add_config_value('prerelease', False, 'env') - app.info("** Prerelease = %r" % prerelease) + print("** Prerelease = %r" % prerelease) |