[Zope3-checkins] SVN: Zope3/trunk/utilities/finddeps.py Fixed a
bug: The path-sniffing code was looking for a package that
Jim Fulton
jim at zope.com
Sun May 23 15:24:53 EDT 2004
Log message for revision 24911:
Fixed a bug: The path-sniffing code was looking for a package that
no-longer exists.
-=-
Modified: Zope3/trunk/utilities/finddeps.py
===================================================================
--- Zope3/trunk/utilities/finddeps.py 2004-05-23 17:43:10 UTC (rev 24910)
+++ Zope3/trunk/utilities/finddeps.py 2004-05-23 19:24:49 UTC (rev 24911)
@@ -24,7 +24,7 @@
swhome = os.path.dirname(here)
for parts in [("src",), ("lib", "python"), ("Lib", "site-packages")]:
- d = os.path.join(swhome, *(parts + ("zope", "app", "process")))
+ d = os.path.join(swhome, *(parts + ("zope", "app", "appsetup")))
if os.path.isdir(d):
d = os.path.join(swhome, *parts)
sys.path.insert(0, d)
More information about the Zope3-Checkins
mailing list