diff options
author | Jannis Leidel <jannis@leidel.info> | 2009-11-01 19:02:35 +0100 |
---|---|---|
committer | Jannis Leidel <jannis@leidel.info> | 2009-11-01 19:02:35 +0100 |
commit | cc0aa57244be3c8aea598862db3ef867dc108ec6 (patch) | |
tree | c114cb80993b70ae223707272e30091d1ca214a7 /setup.py | |
parent | aaa33ec7239dd9f1929ce4925ef9cc6e3fb5a6e6 (diff) | |
download | external_python_setuptools-cc0aa57244be3c8aea598862db3ef867dc108ec6.tar.gz external_python_setuptools-cc0aa57244be3c8aea598862db3ef867dc108ec6.tar.bz2 external_python_setuptools-cc0aa57244be3c8aea598862db3ef867dc108ec6.zip |
Fixed typo in code for DONT_PATCH_SETUPTOOLS environment marker
--HG--
branch : distribute
extra : rebase_source : 86ce375ee0f39fed222626a77fa897eefc5f4e01
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ def _buildout_marker(): def _being_installed(): if os.environ.get('DONT_PATCH_SETUPTOOLS') is not None: - return True + return False if _buildout_marker(): # Installed by buildout, don't mess with a global setuptools. return False |