bug and doc fixes (#60888)

This commit is contained in:
Chris Archibald 2019-08-20 10:50:10 -07:00 committed by ansibot
parent 211fd2c95f
commit 3940a2c3c4

View file

@ -63,7 +63,7 @@ EXAMPLES = """
username: "{{ src_username }}"
password: "{{ src_password }}"
state: absent
ddest_mvip: "{{ dest_hostname }}"
dest_mvip: "{{ dest_hostname }}"
dest_username: "{{ dest_username }}"
dest_password: "{{ dest_password }}"
@ -82,7 +82,7 @@ from ansible.module_utils.netapp_module import NetAppModule
HAS_SF_SDK = netapp_utils.has_sf_sdk()
try:
import solidfire.common
except Exception:
except ImportError:
HAS_SF_SDK = False