Skip to content

Commit

Permalink
Fix tabs/spaces mixups
Browse files Browse the repository at this point in the history
  • Loading branch information
jpiron committed Nov 3, 2020
1 parent 890b873 commit 4ec9203
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library/vcenter_gather_moids.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_mo(content, searchedname, vim_type_list):
for object in mo:
if object.name == searchedname:
return object
elif re.search( searchedname, object.name ):
elif re.search( searchedname, object.name ):
return object
return None

Expand Down
3 changes: 1 addition & 2 deletions library/vcenter_nsx_license.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def main():
vcenter=dict(required=True, type='str'),
vcenter_user=dict(required=True, type='str'),
vcenter_passwd=dict(required=True, type='str', no_log=True),
license_key=dict(required=True, type='str', no_log=True)
license_key=dict(required=True, type='str', no_log=True)
),
supports_check_mode=False
)
Expand All @@ -71,4 +71,3 @@ def main():

if __name__ == '__main__':
main()

0 comments on commit 4ec9203

Please sign in to comment.