Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24a05f7 commit 7f9d181Copy full SHA for 7f9d181
1 file changed
Lib/idlelib/EditorWindow.py
@@ -28,8 +28,7 @@ def _sphinx_version():
28
"Format sys.version_info to produce the Sphinx version string used to install the chm docs"
29
major, minor, micro, level, serial = sys.version_info
30
release = '%s%s' % (major, minor)
31
- if micro:
32
- release += '%s' % (micro,)
+ release += '%s' % (micro,)
33
if level == 'candidate':
34
release += 'rc%s' % (serial,)
35
elif level != 'final':
0 commit comments