From: Zooko O'Whielacronx Date: Thu, 20 Dec 2007 23:18:14 +0000 (-0700) Subject: setup: fix scheme ("file:") for download base for boostrapping setuptools X-Git-Url: https://git.rkrishnan.org/about.html?a=commitdiff_plain;h=c00ab7c5ea640ead1c1a628785b3f5369ba51774;p=tahoe-lafs%2Ftahoe-lafs.git setup: fix scheme ("file:") for download base for boostrapping setuptools --- diff --git a/setup.py b/setup.py index ae0ec35c..5db72d84 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ else: # breaks inside older setuptools' sandboxing. 0.6c4 is the first # version which fixed this problem. min_version='0.6c4' - download_base = os.path.join('misc', 'dependencies')+os.path.sep + download_base = "file:"+os.path.join('misc', 'dependencies')+os.path.sep use_setuptools(min_version=min_version, download_base=download_base, download_delay=0)