From 3bfe07b4f583b9526b616ec7e49332994ca5bc2e Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Thu, 16 Aug 2018 15:51:26 -0700 Subject: Support Attach subcommand in pypodman * Fix some random error handling Signed-off-by: Jhon Honce Closes: #1296 Approved by: rhatdan --- contrib/python/podman/podman/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/python/podman') diff --git a/contrib/python/podman/podman/client.py b/contrib/python/podman/podman/client.py index b61506cda..24df65e23 100644 --- a/contrib/python/podman/podman/client.py +++ b/contrib/python/podman/podman/client.py @@ -45,7 +45,7 @@ class BaseClient(): raise ValueError('interface is required and cannot be None') unsupported = set(kwargs.keys()).difference( - ('uri', 'interface', 'remote_uri', 'port', 'identity_file')) + ('uri', 'interface', 'remote_uri', 'identity_file')) if unsupported: raise ValueError('Unknown keyword arguments: {}'.format( ', '.join(unsupported))) -- cgit v1.2.3-54-g00ecf