diff options
author | tarek <none@none> | 2009-09-13 01:38:00 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-09-13 01:38:00 +0200 |
commit | 28c9b94a4da7a469bb726309bce461dd0843e744 (patch) | |
tree | 58d15139a2872ae372e47b9d695acad261d6339b | |
parent | 745ef1b0e338b5160274f83900a10a99de46dcdb (diff) | |
download | external_python_setuptools-28c9b94a4da7a469bb726309bce461dd0843e744.tar.gz external_python_setuptools-28c9b94a4da7a469bb726309bce461dd0843e744.tar.bz2 external_python_setuptools-28c9b94a4da7a469bb726309bce461dd0843e744.zip |
fixed typo
--HG--
branch : distribute
extra : rebase_source : d9b3c2bcaa5bdc3367650f4571eefd33ef45e43e
-rw-r--r-- | distribute_setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distribute_setup.py b/distribute_setup.py index e554c9cb..fb274518 100644 --- a/distribute_setup.py +++ b/distribute_setup.py @@ -356,7 +356,7 @@ def _relaunch(): log.warn('Relaunching...') # we have to relaunch the process args = [sys.executable] + sys.argv - if is_jython: + if IS_JYTHON: sys.exit(subprocess.call(args)) else: sys.exit(os.spawnv(os.P_WAIT, sys.executable, args)) |