Skip to content
This repository was archived by the owner on Jul 17, 2023. It is now read-only.

Commit d3cc43c

Browse files
committed
fix missing fqcn
1 parent c2e0f64 commit d3cc43c

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

plugins/modules/vultr_dns_domain.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
# Copyright (c) 2017, René Moser <mail@renemoser.net>
55
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
66

7-
from __future__ import (absolute_import, division, print_function)
7+
from __future__ import absolute_import, division, print_function
8+
89
__metaclass__ = type
910

1011

@@ -26,7 +27,7 @@
2627
server_ip:
2728
description:
2829
- The default server IP.
29-
- Use M(vultr_dns_record) to change it once the domain is created.
30+
- Use M(ngine_io.vultr.vultr_dns_record) to change it once the domain is created.
3031
- Required if C(state=present).
3132
type: str
3233
state:
@@ -102,10 +103,8 @@
102103
'''
103104

104105
from ansible.module_utils.basic import AnsibleModule
105-
from ..module_utils.vultr import (
106-
Vultr,
107-
vultr_argument_spec,
108-
)
106+
107+
from ..module_utils.vultr import Vultr, vultr_argument_spec
109108

110109

111110
class AnsibleVultrDnsDomain(Vultr):

0 commit comments

Comments
 (0)