Skip to content
This repository has been archived by the owner on Jul 30, 2019. It is now read-only.

Commit

Permalink
make the buildout receipe work with config paths including whitespace…
Browse files Browse the repository at this point in the history
…s, references #1
  • Loading branch information
elemoine committed Feb 9, 2012
1 parent 8e0cd51 commit 2deaa0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jstools/bo.py
Expand Up @@ -23,7 +23,7 @@ def __init__(self, buildout, name, options):
def install(self):
buildout_dir = self.buildout['buildout']['directory']
self.merge = merge.Merger.from_fn(
tuple(self.options.get('config').split()),
tuple(self.options.get('config').split('\n')),
output_dir=self.options.get('output-dir', buildout_dir),
root_dir=self.options.get('base-dir', buildout_dir),
defaults={
Expand Down

0 comments on commit 2deaa0d

Please sign in to comment.