]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blobdiff - misc/find-dep-eggs.py
setup: fix bin/tahoe to include .egg's from the source tree root dir as well
[tahoe-lafs/tahoe-lafs.git] / misc / find-dep-eggs.py
index f0caf56782733afd07cb897d22f00591392c8ca1..97bfc3d8bf45abb57906a4eb038e9ec011e25944 100644 (file)
@@ -14,10 +14,4 @@ if os.path.exists(support_lib):
         if fn.endswith(".egg"):
             path.append(os.path.abspath(os.path.join(support_lib, fn)))
 
-# We also need to include .egg's in the CWD, because those are placed there by
-# libraries that we've installed if *they* require them.
-for fn in os.listdir("."):
-    if fn.endswith(".egg"):
-        path.append(os.path.abspath(os.path.join(os.getcwd(), fn)))
-
 print os.pathsep.join(path)