Skip to content

Commit

Permalink
ansible#59096 Fix for not working azure_rm_aks (ansible#59097)
Browse files Browse the repository at this point in the history
  • Loading branch information
carbolymer authored and anas-shami committed Sep 23, 2019
1 parent bf92c46 commit e875880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/module_utils/azure_rm_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def check_client_version(self, client_type):
try:
client_module = importlib.import_module(client_type.__module__)
client_version = client_module.VERSION
except RuntimeError:
except (RuntimeError, AttributeError):
# can't get at the module version for some reason, just fail silently...
return
expected_version = package_version.get('expected_version')
Expand Down

0 comments on commit e875880

Please sign in to comment.