From: Zooko O'Whielacronx Date: Thu, 20 Dec 2007 23:16:30 +0000 (-0700) Subject: setup: fix typo in name of download base for bootstrapping setuptools X-Git-Url: https://git.rkrishnan.org/install-details.html?a=commitdiff_plain;h=3028defb7e1f00f33bbee0ac3c09f707d6916806;p=tahoe-lafs%2Ftahoe-lafs.git setup: fix typo in name of download base for bootstrapping setuptools --- diff --git a/setup.py b/setup.py index f0a45fe6..ae0ec35c 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' - downloadbase = os.path.join('misc', 'dependencies')+os.path.sep + download_base = os.path.join('misc', 'dependencies')+os.path.sep use_setuptools(min_version=min_version, download_base=download_base, download_delay=0)