summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-08-27 20:44:13 (GMT)
committerGreg Ward <gward@python.net>2000-08-27 20:44:13 (GMT)
commit6f9320b9d12649d084ed54671960d8387a856282 (patch)
treee984cf1589dd0bfc542449edb88abce7f9dd9b31 /Lib/distutils
parentdd13e4f91ff2d8824e852afaec59d95d7dd409b3 (diff)
downloadcpython-6f9320b9d12649d084ed54671960d8387a856282.zip
cpython-6f9320b9d12649d084ed54671960d8387a856282.tar.gz
cpython-6f9320b9d12649d084ed54671960d8387a856282.tar.bz2
Fix line-endings.
Fix bad operator precedence: should be "(metadata or '') + '\n'".
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/command/bdist_wininst.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py
index 9b600a9..78a5c9c 100644
--- a/Lib/distutils/command/bdist_wininst.py
+++ b/Lib/distutils/command/bdist_wininst.py
@@ -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'):