[Zodb-checkins] CVS: ZEO/ZEO - start.py:1.60
Florent Guillaume
fg@nuxeo.com
Mon, 20 Jan 2003 13:05:54 -0500
Update of /cvs-repository/ZEO/ZEO
In directory cvs.zope.org:/tmp/cvs-serv24823
Modified Files:
start.py
Log Message:
Merge from 2.0 branch:
Fixed to correctly munge sys.path.
=== ZEO/ZEO/start.py 1.59 => 1.60 ===
--- ZEO/ZEO/start.py:1.59 Fri Jan 17 11:39:20 2003
+++ ZEO/ZEO/start.py Mon Jan 20 13:05:50 2003
@@ -22,7 +22,7 @@
import ThreadedAsync.LoopCallback
def directory(p, n=1):
- d = p
+ d = os.path.abspath(p)
while n:
d = os.path.split(d)[0]
if not d or d == '.':