Fix overzealous error handling

This commit is contained in:
Stefan Reimer 2018-12-12 06:31:59 +00:00
parent 67c874a373
commit 8e1866cd41
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ def provision(ctx, stack_name, multi):
futures.append(group.submit(stack.update))
for future in as_completed(futures):
stack, status = future.result()
result = future.result()
@click.command()
@ -95,7 +95,7 @@ def delete(ctx, stack_name, multi):
futures.append(group.submit(stack.delete))
for future in as_completed(futures):
stack, status = future.result()
result = future.result()
@click.command()