Commit 069a0d74 authored by Greg Ward's avatar Greg Ward

Fix line-endings.

Fix bad operator precedence: should be "(metadata or '') + '\n'".
parent 8294ae14
......@@ -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'):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment