1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Let called functions use method keyword (#43086)

Hopefully we can live without `method_` instead
This commit is contained in:
Nathaniel Case 2018-07-22 15:26:44 -04:00 committed by GitHub
parent 64f5f9c2f9
commit 8c620a17d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -72,9 +72,9 @@ def exec_command(module, command):
return 0, out, ''
def request_builder(method, *args, **kwargs):
def request_builder(method_, *args, **kwargs):
reqid = str(uuid.uuid4())
req = {'jsonrpc': '2.0', 'method': method, 'id': reqid}
req = {'jsonrpc': '2.0', 'method': method_, 'id': reqid}
params = args or kwargs or None
if params:

View file

@ -27,7 +27,6 @@ from ansible import constants as C
from ansible.plugins.action.normal import ActionModule as _ActionModule
from ansible.module_utils.network.asa.asa import asa_provider_spec
from ansible.module_utils.network.common.utils import load_provider
from ansible.module_utils.connection import request_builder
try: