[Zope-Checkins] CVS: Zope/lib/python/App - Common.py:1.15.4.2

Chris McDonough chrism@zope.com
Tue, 3 Sep 2002 01:54:00 -0400


Update of /cvs-repository/Zope/lib/python/App
In directory cvs.zope.org:/tmp/cvs-serv7289

Modified Files:
      Tag: chrism-install-branch
	Common.py 
Log Message:
join should be os.path.join


=== Zope/lib/python/App/Common.py 1.15.4.1 => 1.15.4.2 ===
--- Zope/lib/python/App/Common.py:1.15.4.1	Mon Sep  2 22:55:03 2002
+++ Zope/lib/python/App/Common.py	Tue Sep  3 01:54:00 2002
@@ -146,7 +146,7 @@
                 if os.path.islink(component):
                     resolved = os.readlink(component)
                     (dir, file) = os.path.split(component)
-                    resolved = os.path.normpath(join(dir, resolved))
+                    resolved = os.path.normpath(os.path.join(dir, resolved))
                     newpath = os.path.join(*([resolved] + bits[i:]))
                     return realpath(newpath)