gcdns_record: fix broken import (#34024)

This commit is contained in:
Pilou 2017-12-19 18:31:35 +01:00 committed by Ryan Brown
commit 107934241e
2 changed files with 3 additions and 4 deletions

View file

@ -319,8 +319,11 @@ try:
from libcloud.dns.types import RecordDoesNotExistError
from libcloud.dns.types import ZoneDoesNotExistError
HAS_LIBCLOUD = True
# The libcloud Google Cloud DNS provider.
PROVIDER = Provider.GOOGLE
except ImportError:
HAS_LIBCLOUD = False
PROVIDER = None
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.gcdns import gcdns_connect
@ -335,9 +338,6 @@ from ansible.module_utils.gcdns import gcdns_connect
# deprecated and decommissioned.
MINIMUM_LIBCLOUD_VERSION = '0.19.0'
# The libcloud Google Cloud DNS provider.
PROVIDER = Provider.GOOGLE
# The records that libcloud's Google Cloud DNS provider supports.
#
# Libcloud has a RECORD_TYPE_MAP dictionary in the provider that also contains