Log message for revision 40092:
  Don't hard-wire forward-slash into sys.path (redux).

Changed:
  U   Zope/trunk/test.py

-=-
Modified: Zope/trunk/test.py
===================================================================
--- Zope/trunk/test.py  2005-11-14 04:47:30 UTC (rev 40091)
+++ Zope/trunk/test.py  2005-11-14 04:54:58 UTC (rev 40092)
@@ -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)
 

_______________________________________________
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins

Reply via email to