[Zope-Checkins] CVS: Zope2 - Extensions.py:1.14.74.1
Brian Lloyd
brian@digicool.com
Tue, 3 Apr 2001 10:41:56 -0400 (EDT)
Update of /cvs-repository/Zope2/lib/python/App
In directory korak:/home/brian/temp/zope-23-branch/lib/python/App
Modified Files:
Tag: zope-2_3-branch
Extensions.py
Log Message:
fix missing os.path.join
--- Updated File Extensions.py in package Zope2 --
--- Extensions.py 2000/07/05 21:22:00 1.14
+++ Extensions.py 2001/04/03 14:41:54 1.14.74.1
@@ -156,7 +156,7 @@
p = name[:l]
n = name[l + 1:]
for product_dir in Products.__path__:
- r = _getPath(product_dir, '%s/%s/' % (p, prefix), n, suffixes)
+ r = _getPath(product_dir, os.path.join(p, prefix), n, suffixes)
if r is not None: return r
sw=path_split(path_split(SOFTWARE_HOME)[0])[0]