From 8bfe7402f02dea320d116278739180b5c5c85a55 Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Thu, 9 Jul 2020 10:45:33 -0600 Subject: [PATCH] doc: _podman() cmd value can be a list (#79) Commit cc8d4bb4510bcc79537ed3fa591fb9cace576ae9 changed _podman() to accept a string or a list for the "cmd" parameter. Update the docstring for this parameter to reflect this. --- plugins/connection/podman.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/connection/podman.py b/plugins/connection/podman.py index c8b5a26..9ab0b38 100644 --- a/plugins/connection/podman.py +++ b/plugins/connection/podman.py @@ -95,7 +95,7 @@ class Connection(ConnectionBase): """ run podman executable - :param cmd: podman's command to execute (str) + :param cmd: podman's command to execute (str or list) :param cmd_args: list of arguments to pass to the command (list of str/bytes) :param in_data: data passed to podman's stdin :return: return code, stdout, stderr