]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: fix bug in bugfix to patch to include .egg's found in CWD
authorZooko O'Whielacronx <zooko@zooko.com>
Sat, 22 Dec 2007 18:19:52 +0000 (11:19 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Sat, 22 Dec 2007 18:19:52 +0000 (11:19 -0700)
misc/find-dep-eggs.py

index 64028b328022128125df2d978940955efef46c80..f0caf56782733afd07cb897d22f00591392c8ca1 100644 (file)
@@ -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)