projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ee424b
)
setup: fix bug in bugfix to patch to include .egg's found in CWD
author
Zooko O'Whielacronx
<zooko@zooko.com>
Sat, 22 Dec 2007 18:19:52 +0000
(11:19 -0700)
committer
Zooko O'Whielacronx
<zooko@zooko.com>
Sat, 22 Dec 2007 18:19:52 +0000
(11:19 -0700)
misc/find-dep-eggs.py
patch
|
blob
|
history
diff --git
a/misc/find-dep-eggs.py
b/misc/find-dep-eggs.py
index 64028b328022128125df2d978940955efef46c80..f0caf56782733afd07cb897d22f00591392c8ca1 100644
(file)
--- 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)