From 6f9320b9d12649d084ed54671960d8387a856282 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sun, 27 Aug 2000 20:44:13 +0000 Subject: Fix line-endings. Fix bad operator precedence: should be "(metadata or '') + '\n'". --- Lib/distutils/command/bdist_wininst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'): -- cgit v0.12