mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-06 16:34:02 -07:00
webfaction modules: fix broken import (#35024)
* webfaction_app: fix broken import * doc: use formatting functions * webaction_db: fix broken import * webfaction_domain: fix broken import * webfaction_mailbox: fix broken import * webaction_site: fix broken import * webfaction modules: fix doc
This commit is contained in:
parent
a7371d4998
commit
bc6b96d42e
7 changed files with 20 additions and 31 deletions
|
@ -49,7 +49,7 @@ options:
|
|||
description:
|
||||
- Any subdomains to create.
|
||||
required: false
|
||||
default: null
|
||||
default: []
|
||||
|
||||
login_name:
|
||||
description:
|
||||
|
@ -82,12 +82,11 @@ EXAMPLES = '''
|
|||
|
||||
'''
|
||||
|
||||
import xmlrpclib
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.six.moves import xmlrpc_client
|
||||
|
||||
|
||||
webfaction = xmlrpclib.ServerProxy('https://api.webfaction.com/')
|
||||
webfaction = xmlrpc_client.ServerProxy('https://api.webfaction.com/')
|
||||
|
||||
|
||||
def main():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue