diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-06-05 12:40:35 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-05 21:23:54 +0000 |
commit | 93c1722caab372f873765041d2bd2b710de3c5c4 (patch) | |
tree | 3c2b5020db1e68092bbd25888a90f6ef145d0d00 /contrib/python/podman/client.py | |
parent | 3901ecc7b6b08b7555ccf0e8a05b278b05a9629c (diff) | |
download | podman-93c1722caab372f873765041d2bd2b710de3c5c4.tar.gz podman-93c1722caab372f873765041d2bd2b710de3c5c4.tar.bz2 podman-93c1722caab372f873765041d2bd2b710de3c5c4.zip |
Add support for BuildImage
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Closes: #908
Approved by: baude
Diffstat (limited to 'contrib/python/podman/client.py')
-rw-r--r-- | contrib/python/podman/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/podman/client.py b/contrib/python/podman/client.py index c6112aae8..89fcf5c15 100644 --- a/contrib/python/podman/client.py +++ b/contrib/python/podman/client.py @@ -38,7 +38,7 @@ class Client(object): @contextlib.contextmanager def _podman(uri, interface): - """Context manager for API children to access varlink.""" + """Context manager for API workers to access varlink.""" client = VarlinkClient(address=uri) try: iface = client.open(interface) |