diff options
author | Greg Ward <gward@python.net> | 2000-08-27 20:44:13 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-08-27 20:44:13 (GMT) |
commit | 6f9320b9d12649d084ed54671960d8387a856282 (patch) | |
tree | e984cf1589dd0bfc542449edb88abce7f9dd9b31 | |
parent | dd13e4f91ff2d8824e852afaec59d95d7dd409b3 (diff) | |
download | cpython-6f9320b9d12649d084ed54671960d8387a856282.zip cpython-6f9320b9d12649d084ed54671960d8387a856282.tar.gz cpython-6f9320b9d12649d084ed54671960d8387a856282.tar.bz2 |
Fix line-endings.
Fix bad operator precedence: should be "(metadata or '') + '\n'".
-rw-r--r-- | Lib/distutils/command/bdist_wininst.py | 2 |
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'): |