]> granicus.if.org Git - python/commitdiff
Fix line-endings.
authorGreg Ward <gward@python.net>
Sun, 27 Aug 2000 20:44:13 +0000 (20:44 +0000)
committerGreg Ward <gward@python.net>
Sun, 27 Aug 2000 20:44:13 +0000 (20:44 +0000)
Fix bad operator precedence: should be "(metadata or '') + '\n'".

Lib/distutils/command/bdist_wininst.py

index 9b600a9e1ef3c11149b01eb1b2b037c8e4e5a590..78a5c9c5735c3e690b2db82ab2ce4b0fa39a59d4 100644 (file)
@@ -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'):