Commit 5b4070fe authored by Vincent Pelletier's avatar Vincent Pelletier Committed by Kazuhiko Shiozaki

Fix indentation.

parent 28067e23
...@@ -86,13 +86,13 @@ class Recipe(object): ...@@ -86,13 +86,13 @@ class Recipe(object):
def __init__(self, buildout, name, options): def __init__(self, buildout, name, options):
slap = slapos.slap.slap() slap = slapos.slap.slap()
slap.initializeConnection( slap.initializeConnection(
options['url'], options['url'],
options.get('key'), options.get('key'),
options.get('cert'), options.get('cert'),
) )
parameter_dict = slap.registerComputerPartition( parameter_dict = slap.registerComputerPartition(
options['computer'], options['computer'],
options['partition'], options['partition'],
).getInstanceParameterDict() ).getInstanceParameterDict()
allow_unsafe = bool(int(options.get('unsafe', '0'))) allow_unsafe = bool(int(options.get('unsafe', '0')))
match = self.OPTCRE.match match = self.OPTCRE.match
......
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