From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Sat, 22 Dec 2007 18:19:52 +0000 (-0700)
Subject: setup: fix bug in bugfix to patch to include .egg's found in CWD
X-Git-Tag: allmydata-tahoe-0.7.0~79
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/%22file:/%22doc.html/...?a=commitdiff_plain;h=bfc69178b2f074773acb336f5367ef89d638400e;p=tahoe-lafs%2Ftahoe-lafs.git

setup: fix bug in bugfix to patch to include .egg's found in CWD
---

diff --git a/misc/find-dep-eggs.py b/misc/find-dep-eggs.py
index 64028b32..f0caf567 100644
--- a/misc/find-dep-eggs.py
+++ b/misc/find-dep-eggs.py
@@ -18,6 +18,6 @@ if os.path.exists(support_lib):
 # 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.get_cwd(), fn)))
+        path.append(os.path.abspath(os.path.join(os.getcwd(), fn)))
 
 print os.pathsep.join(path)