summaryrefslogtreecommitdiffstats
path: root/Doc/tools
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2017-01-29 10:05:02 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2017-01-29 10:05:02 (GMT)
commit8f3fb723091ced7ffd4f703f2480f044db5c8bc4 (patch)
tree5b0dd09db9c0198c4420df56c703f1d5c8222eb5 /Doc/tools
parent8dbb0ca573436dcc780ae3fc00941f928f02b708 (diff)
downloadcpython-8f3fb723091ced7ffd4f703f2480f044db5c8bc4.zip
cpython-8f3fb723091ced7ffd4f703f2480f044db5c8bc4.tar.gz
cpython-8f3fb723091ced7ffd4f703f2480f044db5c8bc4.tar.bz2
Issue #29349: Fix Python 2 syntax in documentation build code
Diffstat (limited to 'Doc/tools')
-rw-r--r--Doc/tools/extensions/patchlevel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tools/extensions/patchlevel.py b/Doc/tools/extensions/patchlevel.py
index bca2eb8..9558b9c 100644
--- a/Doc/tools/extensions/patchlevel.py
+++ b/Doc/tools/extensions/patchlevel.py
@@ -61,8 +61,8 @@ def get_version_info():
return get_header_version_info('.')
except (IOError, OSError):
version, release = get_sys_version_info()
- print >>sys.stderr, 'Can\'t get version info from Include/patchlevel.h, ' \
- 'using version of this interpreter (%s).' % release
+ print('Can\'t get version info from Include/patchlevel.h, ' \
+ 'using version of this interpreter (%s).' % release, file=sys.stderr)
return version, release
if __name__ == '__main__':