diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-05 04:50:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-05 04:50:16 -0800 |
commit | 76360d9a6ef73f694138766b81f380e45a860556 (patch) | |
tree | b697821ab3d2f5c3826434079b50ee1d1f454f04 /contrib/python/podman | |
parent | e106ccf416026e301cd94246d9d1c84c47de8e23 (diff) | |
parent | a4c0cdedb90897104002c3a746782a8d55b7ab23 (diff) | |
download | podman-76360d9a6ef73f694138766b81f380e45a860556.tar.gz podman-76360d9a6ef73f694138766b81f380e45a860556.tar.bz2 podman-76360d9a6ef73f694138766b81f380e45a860556.zip |
Merge pull request #1743 from jwhonce/issue/1702
Add ChangeAction to parse sub-options from --change
Diffstat (limited to 'contrib/python/podman')
-rw-r--r-- | contrib/python/podman/podman/libs/images.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/podman/podman/libs/images.py b/contrib/python/podman/podman/libs/images.py index 982546cd2..9453fb416 100644 --- a/contrib/python/podman/podman/libs/images.py +++ b/contrib/python/podman/podman/libs/images.py @@ -137,7 +137,7 @@ class Images(): results = podman.DeleteUnusedImages() return results['images'] - def import_image(self, source, reference, message=None, changes=None): + def import_image(self, source, reference, message='', changes=None): """Read image tarball from source and save in image store.""" with self._client() as podman: results = podman.ImportImage(source, reference, message, changes) |