diff options
| author | tarek <none@none> | 2009-08-04 23:22:17 +0200 |
|---|---|---|
| committer | tarek <none@none> | 2009-08-04 23:22:17 +0200 |
| commit | 60f1dd07394e23b7463f41edc301d02a7b8aea08 (patch) | |
| tree | 25b5a22afe87c4f43d9ef5655d1e1d90d6230eb7 | |
| parent | 2c1f443ce376284d1eb45c76be3f39042abcacd4 (diff) | |
| download | python-setuptools-git-60f1dd07394e23b7463f41edc301d02a7b8aea08.tar.gz | |
fixed to_reload initialiazion
--HG--
branch : distribute
extra : rebase_source : b5184539d744b9d6e1b884f9677bfb7f63f0873d
| -rw-r--r-- | buildout/bootstrap.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/buildout/bootstrap.py b/buildout/bootstrap.py index de143ebd..a0afe9d0 100644 --- a/buildout/bootstrap.py +++ b/buildout/bootstrap.py @@ -26,13 +26,12 @@ tmpeggs = tempfile.mkdtemp() is_jython = sys.platform.startswith('java') +to_reload = False try: import pkg_resources if not hasattr(pkg_resources, '_distribute'): to_reload = True raise ImportError - else: - to_reload = False except ImportError: ez = {} exec urllib2.urlopen('http://nightly.ziade.org/bootstraping.py' |
