summaryrefslogtreecommitdiff
path: root/heatclient/osc
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-02-21 07:45:07 +0000
committerGerrit Code Review <review@openstack.org>2020-02-21 07:45:07 +0000
commit207968f353f435d315ff25194e35251bb260df35 (patch)
tree3f97c8c962dfe4e39a15a8e1d9e4ff43fa5a4e28 /heatclient/osc
parentb0308a9679137a971978c7d047f4b7d99fbd9a43 (diff)
parentfcc7befd0fed57165b9ce039f1c3c8fb6e39c0c2 (diff)
downloadpython-heatclient-207968f353f435d315ff25194e35251bb260df35.tar.gz
Merge "Cleanup of .keys() from dict_object.keys() *in* operator"
Diffstat (limited to 'heatclient/osc')
-rw-r--r--heatclient/osc/v1/software_deployment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heatclient/osc/v1/software_deployment.py b/heatclient/osc/v1/software_deployment.py
index eccab42..825d8fb 100644
--- a/heatclient/osc/v1/software_deployment.py
+++ b/heatclient/osc/v1/software_deployment.py
@@ -340,7 +340,7 @@ class ShowOutputDeployment(command.Command):
if outputs:
if parsed_args.all:
print('output_values:\n')
- for k in outputs.keys():
+ for k in outputs:
format_utils.print_software_deployment_output(
data=outputs, name=k, long=parsed_args.long)
else: