Commit 6b35b4be authored by Sidnei da Silva's avatar Sidnei da Silva

- Quote the 'spec' argument, as in the case of installing an egg from
  the buildout-cache, if the filename contains spaces it would fail
parent 3e5e1604
...@@ -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