[Zope-Checkins] SVN: Zope/branches/Zope-2_9-branch/test.py Backport
fix for broken Windows tests from trunk.
Tres Seaver
tseaver at palladion.com
Mon Nov 14 11:21:25 EST 2005
Log message for revision 40093:
Backport fix for broken Windows tests from trunk.
Changed:
U Zope/branches/Zope-2_9-branch/test.py
-=-
Modified: Zope/branches/Zope-2_9-branch/test.py
===================================================================
--- Zope/branches/Zope-2_9-branch/test.py 2005-11-14 04:54:58 UTC (rev 40092)
+++ Zope/branches/Zope-2_9-branch/test.py 2005-11-14 16:21:24 UTC (rev 40093)
@@ -30,7 +30,7 @@
if shome:
shome = os.path.abspath(shome)
else:
- shome = os.path.join(zhome, 'lib/python')
+ shome = os.path.join(zhome, 'lib', 'python')
elif shome:
shome = os.path.abspath(shome)
zhome = os.path.dirname(os.path.dirname(shome))
@@ -42,7 +42,7 @@
else:
# No zope home, assume that it is the script directory
zhome = os.path.abspath(os.path.dirname(sys.argv[0]))
- shome = os.path.join(zhome, 'lib/python')
+ shome = os.path.join(zhome, 'lib', 'python')
sys.path.insert(0, shome)
More information about the Zope-Checkins
mailing list