[Zope-Checkins] CVS: Zope3/lib/python/Zope/Configuration - name.py:1.1.2.12.10.3

Jim Fulton jim@zope.com
Tue, 4 Jun 2002 15:56:58 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/Configuration
In directory cvs.zope.org:/tmp/cvs-serv25735

Modified Files:
      Tag: Zope3InWonderland-branch
	name.py 
Log Message:
Fixed path function to actually join the path with the file. Sheesh.


=== Zope3/lib/python/Zope/Configuration/name.py 1.1.2.12.10.2 => 1.1.2.12.10.3 ===
     path = os.path.split(package.__file__)[0]
     if file:
-        path = os.path.join(file)
+        path = os.path.join(path, file)
     return path