thinhduong / esmre

Automatically exported from code.google.com/p/esmre
GNU Lesser General Public License v2.1
0 stars 0 forks source link

PKG-INFO description has one word per line. #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1. Build a source distribution with python setup.py sdist.
2. Unpack the generated tarball and inspect its PKG-INFO.
3. Note that the 'Description' field is split on each word.

What is the expected output? What do you see instead?

The description field should be formatted as one line, or be properly
justified.

Original issue reported on code.google.com by whar...@gmail.com on 28 Jan 2008 at 3:08

GoogleCodeExporter commented 9 years ago
Fixed in revision 4.

To make it indent better, the long_description was being split on ' ' then 
joined
with '\n'. The split was happening at every word boundary, not just at the line
boundaries. I changed the join to use ' ' instead of '\n'.

Original comment by whar...@gmail.com on 28 Jan 2008 at 3:18

GoogleCodeExporter commented 9 years ago
Released in r0_1_1.

Original comment by whar...@gmail.com on 2 May 2008 at 1:09