aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2009-11-01 19:02:35 +0100
committerJannis Leidel <jannis@leidel.info>2009-11-01 19:02:35 +0100
commitcc0aa57244be3c8aea598862db3ef867dc108ec6 (patch)
treec114cb80993b70ae223707272e30091d1ca214a7 /setup.py
parentaaa33ec7239dd9f1929ce4925ef9cc6e3fb5a6e6 (diff)
downloadexternal_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-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 48c77b0c..f9a2bcb2 100755
--- a/setup.py
+++ b/setup.py
@@ -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