diff --git a/misc/find-dep-eggs.py b/misc/find-dep-eggs.py index 64028b328..f0caf5678 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)