[Checkins] SVN: Products.GenericSetup/trunk/setup.py fixed a typo that broke setup.py

Tarek Ziade ziade.tarek at gmail.com
Thu Oct 2 19:27:04 EDT 2008


Log message for revision 91680:
  fixed a typo that broke setup.py

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

-=-
Modified: Products.GenericSetup/trunk/setup.py
===================================================================
--- Products.GenericSetup/trunk/setup.py	2008-10-02 20:18:36 UTC (rev 91679)
+++ Products.GenericSetup/trunk/setup.py	2008-10-02 23:27:03 UTC (rev 91680)
@@ -6,11 +6,14 @@
 package = os.path.join(here, 'Products', 'GenericSetup')
 docs = os.path.join(here, 'docs')
 
-def _docs_doc(name):
 def _package_doc(name):
     f = open(os.path.join(package, name))
     return f.read()
 
+def _docs_doc(name):
+    f = open(os.path.join(docs, name))
+    return f.read()
+
 NAME = 'GenericSetup'
 
 _boundary = '\n' + ('-' * 60) + '\n\n'



More information about the Checkins mailing list