Fix line-endings.

Fix bad operator precedence: should be "(metadata or '') + '\n'".
This commit is contained in:
Greg Ward 2000-08-27 20:44:13 +00:00
parent dd13e4f91f
commit 6f9320b9d1
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ class bdist_wininst (Command):
# 'info' will be displayed in the installer's dialog box, # 'info' will be displayed in the installer's dialog box,
# describing the items to be installed. # describing the items to be installed.
info = metadata.long_description or '' + '\n' info = (metadata.long_description or '') + '\n'
for name in dir (metadata): for name in dir (metadata):
if (name != 'long_description'): if (name != 'long_description'):