[Checkins] SVN: zc.objectlog/trunk/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:10:00 EDT 2008


Log message for revision 85073:
  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 change has already been made in the 0.1 tag.
  
  

Changed:
  U   zc.objectlog/trunk/setup.py

-=-
Modified: zc.objectlog/trunk/setup.py
===================================================================
--- zc.objectlog/trunk/setup.py	2008-04-02 19:02:11 UTC (rev 85072)
+++ zc.objectlog/trunk/setup.py	2008-04-02 19:10:00 UTC (rev 85073)
@@ -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