Fix line-endings.
Fix bad operator precedence: should be "(metadata or '') + '\n'".
This commit is contained in:
parent
dd13e4f91f
commit
6f9320b9d1
|
@ -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…
Reference in New Issue