[Zope3-checkins] CVS: Zope3/bin - zsync:1.2

Fred L. Drake, Jr. fred at zope.com
Tue Aug 12 14:56:53 EDT 2003


Update of /cvs-repository/Zope3/bin
In directory cvs.zope.org:/tmp/cvs-serv2770

Modified Files:
	zsync 
Log Message:
realpath() has to be called before anything else, or it's not being so
very useful


=== Zope3/bin/zsync 1.1 => 1.2 ===
--- Zope3/bin/zsync:1.1	Wed Jul 16 16:25:50 2003
+++ Zope3/bin/zsync	Tue Aug 12 13:56:50 2003
@@ -5,7 +5,7 @@
 import os
 import sys
 
-here = os.path.realpath(os.path.dirname(sys.argv[0]))
+here = os.path.dirname(os.path.realpath(sys.argv[0]))
 srcdir = os.path.join(os.path.dirname(here), "src")
 
 if srcdir not in sys.path:




More information about the Zope3-Checkins mailing list