[Zope-Checkins] SVN: Zope/trunk/test.py Don't hard-wire
forward-slash into sys.path.
Tres Seaver
tseaver at palladion.com
Sun Nov 13 23:47:30 EST 2005
Log message for revision 40091:
Don't hard-wire forward-slash into sys.path.
Changed:
U Zope/trunk/test.py
-=-
Modified: Zope/trunk/test.py
===================================================================
--- Zope/trunk/test.py 2005-11-14 04:25:55 UTC (rev 40090)
+++ Zope/trunk/test.py 2005-11-14 04:47:30 UTC (rev 40091)
@@ -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))
More information about the Zope-Checkins
mailing list