mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Fix line-endings.
Fix bad operator precedence: should be "(metadata or '') + '\n'".
This commit is contained in:
parent
dd13e4f91f
commit
6f9320b9d1
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ class bdist_wininst (Command):
|
|||
|
||||
# 'info' will be displayed in the installer's dialog box,
|
||||
# describing the items to be installed.
|
||||
info = metadata.long_description or '' + '\n'
|
||||
info = (metadata.long_description or '') + '\n'
|
||||
|
||||
for name in dir (metadata):
|
||||
if (name != 'long_description'):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue