[Checkins] SVN: zc.objectlog/tags/0.1/setup.py corrected path of file used in long_description, so that it runs fine on platforms other than linux. thanks to Wichert Akkerman for pointing this out.

Satchidanand Haridas satchit at zope.com
Wed Apr 2 15:02:11 EDT 2008


Log message for revision 85072:
  corrected path of file used in long_description, so that it runs fine on platforms other than linux. thanks to Wichert Akkerman for pointing this out.
  
  this again a tag commit as the package as already been released on pypi.
  
  

Changed:
  U   zc.objectlog/tags/0.1/setup.py

-=-
Modified: zc.objectlog/tags/0.1/setup.py
===================================================================
--- zc.objectlog/tags/0.1/setup.py	2008-04-02 18:40:29 UTC (rev 85071)
+++ zc.objectlog/tags/0.1/setup.py	2008-04-02 19:02:11 UTC (rev 85072)
@@ -1,3 +1,4 @@
+import os
 from setuptools import setup, find_packages
 
 long_description = (open("README.txt").read() +
@@ -2,3 +3,3 @@
                     '\n\n' +
-                    open("src/zc/objectlog/log.txt").read())
+                    open(os.path.join("src", "zc", "objectlog", "log.txt")).read())
 



More information about the Checkins mailing list