Commit 8829b9c2 authored by sidnei's avatar sidnei

- Quote the 'spec' argument, as in the case of installing an egg from
  the buildout-cache, if the filename contains spaces it would fail


git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@87219 62d5b8a3-27da-0310-9561-8e5933582275
parent 1d54edad
...@@ -7,6 +7,9 @@ Change History ...@@ -7,6 +7,9 @@ Change History
1.0.4 (unreleased) 1.0.4 (unreleased)
================== ==================
- Quote the 'spec' argument, as in the case of installing an egg from
the buildout-cache, if the filename contains spaces it would fail (sidnei)
- Extended configuration syntax to allow -= and += operators (malthe). - Extended configuration syntax to allow -= and += operators (malthe).
1.0.3 (2008-06-01) 1.0.3 (2008-06-01)
......
...@@ -272,7 +272,7 @@ class Installer: ...@@ -272,7 +272,7 @@ class Installer:
elif level < 0: elif level < 0:
args += ('-v', ) args += ('-v', )
args += (spec, ) args += (_safe_arg(spec), )
if level <= logging.DEBUG: if level <= logging.DEBUG:
logger.debug('Running easy_install:\n%s "%s"\npath=%s\n', logger.debug('Running easy_install:\n%s "%s"\npath=%s\n',
......
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