mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
setup: fix bug in bugfix to patch to include .egg's found in CWD
This commit is contained in:
parent
2ee424b3a3
commit
bfc69178b2
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user