Skip to content

Commit 3101a7d

Browse files
committed
PI-414 : Fixed launch_stack bug with post return data
1 parent f9adc58 commit 3101a7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stackdio/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def get_zone(self, title, type_name="ec2"):
337337
@endpoint("stacks/")
338338
def launch_stack(self, stack_data):
339339
"""Launch a stack as described by stack_data"""
340-
return self._post(endpoint, data=json.dumps(stack_data), jsonify=True)['results']
340+
return self._post(endpoint, data=json.dumps(stack_data), jsonify=True)
341341

342342

343343
@endpoint("stacks/{stack_id}/hosts/")

0 commit comments

Comments
 (0)