Commit 64ab6691 authored by Tres Seaver's avatar Tres Seaver

Drop the 'no_fake' argument when calling ez_setup.

We don't need to juke faking setuptools (or not) when we are using
setuptools rather than distribute.
parent c766537a
......@@ -78,7 +78,7 @@ except ImportError:
# XXX use a more permanent ez_setup.py URL when available.
exec(urlopen('https://bitbucket.org/pypa/setuptools/raw/0.7.2/ez_setup.py'
).read(), ez)
setup_args = dict(to_dir=tmpeggs, download_delay=0, no_fake=True)
setup_args = dict(to_dir=tmpeggs, download_delay=0)
ez['use_setuptools'](**setup_args)
if to_reload:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment