Commit 82c952ed authored by Łukasz Nowak's avatar Łukasz Nowak

Words are separated by - not _.

parent 20ca2005
...@@ -31,12 +31,12 @@ class Recipe(GenericBaseRecipe): ...@@ -31,12 +31,12 @@ class Recipe(GenericBaseRecipe):
def install(self): def install(self):
path_list = [] path_list = []
conversion_server_dict = dict( conversion_server_dict = dict(
working_path=self.options['cloudooo-data'], working_path=self.options['data-directory'],
uno_path=self.options['ooo-uno-path'], uno_path=self.options['ooo-uno-path'],
office_binary_path=self.options['ooo-binary-path'], office_binary_path=self.options['ooo-binary-path'],
ip=self.options['ip'], ip=self.options['ip'],
port=int(self.options['port']), port=int(self.options['port']),
openoffice_port=int(self.options['openoffice_port']), openoffice_port=int(self.options['openoffice-port']),
) )
for env_line in self.options['environment'].splitlines(): for env_line in self.options['environment'].splitlines():
env_line = env_line.strip() env_line = env_line.strip()
......
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