From 684b544e9c45129a3d8112cfab22526440d8fd13 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Thu, 24 May 2018 17:50:37 -0700 Subject: Spell check strings and comments Signed-off-by: Jhon Honce Closes: #831 Approved by: rhatdan --- contrib/python/podman/libs/containers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'contrib/python/podman/libs') diff --git a/contrib/python/podman/libs/containers.py b/contrib/python/podman/libs/containers.py index 0655010f1..04ea76180 100644 --- a/contrib/python/podman/libs/containers.py +++ b/contrib/python/podman/libs/containers.py @@ -42,7 +42,7 @@ class Container(collections.UserDict): def attach(self, detach_key=None, no_stdin=False, sig_proxy=True): """Attach to running container.""" with self._client() as podman: - # TODO: streaming and port magic occur, need arguements + # TODO: streaming and port magic occur, need arguments podman.AttachToContainer() def processes(self): @@ -163,7 +163,7 @@ class Container(collections.UserDict): def rename(self, target): """Rename container, return id on success.""" with self._client() as podman: - # TODO: Need arguements + # TODO: Need arguments results = podman.RenameContainer() # TODO: fixup objects cached information return results['container'] @@ -171,7 +171,7 @@ class Container(collections.UserDict): def resize_tty(self, width, height): """Resize container tty.""" with self._client() as podman: - # TODO: magic re: attach(), arguements + # TODO: magic re: attach(), arguments podman.ResizeContainerTty() def pause(self): -- cgit v1.2.3-54-g00ecf