diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-05-24 17:50:37 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-05-25 08:45:15 +0000 |
commit | 684b544e9c45129a3d8112cfab22526440d8fd13 (patch) | |
tree | 8aa092161773f0bb171b6e15cffd5d468a1b4b88 /contrib/python/podman/libs | |
parent | a7180cd5459ca063c14a60965b4487f04c0af439 (diff) | |
download | podman-684b544e9c45129a3d8112cfab22526440d8fd13.tar.gz podman-684b544e9c45129a3d8112cfab22526440d8fd13.tar.bz2 podman-684b544e9c45129a3d8112cfab22526440d8fd13.zip |
Spell check strings and comments
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Closes: #831
Approved by: rhatdan
Diffstat (limited to 'contrib/python/podman/libs')
-rw-r--r-- | contrib/python/podman/libs/containers.py | 6 |
1 files changed, 3 insertions, 3 deletions
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): |