Kaydet (Commit) 6f9320b9 authored tarafından Greg Ward's avatar Greg Ward

Fix line-endings.

Fix bad operator precedence: should be "(metadata or '') + '\n'".
üst dd13e4f9
......@@ -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