From bfc69178b2f074773acb336f5367ef89d638400e Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Sat, 22 Dec 2007 11:19:52 -0700 Subject: [PATCH] setup: fix bug in bugfix to patch to include .egg's found in CWD --- misc/find-dep-eggs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.45.2