mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
misc/build_helpers/show-tool-versions.py: look for zetuptoolz egg in the current directory, not the parent.
This commit is contained in:
parent
f7caef635f
commit
901690a029
@ -7,7 +7,7 @@ try:
|
||||
import pkg_resources
|
||||
except ImportError:
|
||||
import glob
|
||||
eggz = glob.glob(os.path.join('..', 'setuptools-*.egg'))
|
||||
eggz = glob.glob('setuptools-*.egg')
|
||||
if len(eggz) > 0:
|
||||
egg = os.path.realpath(eggz[0])
|
||||
print >>sys.stderr, "Inserting egg on sys.path: %r" % (egg,)
|
||||
|
Loading…
Reference in New Issue
Block a user