[Checkins] SVN: Products.PluggableAuthService/trunk/setup.py Fix --long-description generation.

Tres Seaver tseaver at palladion.com
Sun Nov 15 22:46:08 EST 2009


Log message for revision 105682:
  Fix --long-description generation.

Changed:
  U   Products.PluggableAuthService/trunk/setup.py

-=-
Modified: Products.PluggableAuthService/trunk/setup.py
===================================================================
--- Products.PluggableAuthService/trunk/setup.py	2009-11-16 03:44:46 UTC (rev 105681)
+++ Products.PluggableAuthService/trunk/setup.py	2009-11-16 03:46:07 UTC (rev 105682)
@@ -11,12 +11,10 @@
     f = open(os.path.join(package, name))
     return f.read()
 
-_boundary = '\n' + ('-' * 60) + '\n\n'
-README = ( _package_doc('README.txt')
+_boundary = '\n\n'
+README = ( open('README.txt').read()
          + _boundary 
-         + _package_doc('doc/CHANGES.txt')
-         + _boundary 
-         + "Download\n========"
+         + open('CHANGES.txt').read()
          )
 
 setup(name='Products.%s' % NAME,



More information about the checkins mailing list