Skip to content

Commit

Permalink
Fixes vmware#556
Browse files Browse the repository at this point in the history
  • Loading branch information
nesies committed Apr 8, 2019
1 parent 17ddffa commit 730fcbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/deploy_ovf.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def get_obj_in_list(obj_name, obj_list):
if o.name == obj_name:
return o
print("Unable to find object by the name of %s in list:\n%s" %
(o.name, map(lambda o: o.name, obj_list)))
(obj_name, map(lambda o: o.name, obj_list)))
exit(1)


Expand Down

0 comments on commit 730fcbd

Please sign in to comment.