summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2018-08-20 08:15:14 -0700
committerAtomic Bot <atomic-devel@projectatomic.io>2018-08-20 15:26:09 +0000
commit937398abcfa9848b36efd95d845d98d865578c71 (patch)
treeec6fef1aa41c8b23034a273d5524c5a3f59421a0
parent3bfe07b4f583b9526b616ec7e49332994ca5bc2e (diff)
downloadpodman-937398abcfa9848b36efd95d845d98d865578c71.tar.gz
podman-937398abcfa9848b36efd95d845d98d865578c71.tar.bz2
podman-937398abcfa9848b36efd95d845d98d865578c71.zip
Update error message from reviews
Signed-off-by: Jhon Honce <jhonce@redhat.com> Closes: #1296 Approved by: rhatdan
-rw-r--r--contrib/python/pypodman/pypodman/lib/actions/attach_action.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/pypodman/pypodman/lib/actions/attach_action.py b/contrib/python/pypodman/pypodman/lib/actions/attach_action.py
index 4a6d578f1..e9829e894 100644
--- a/contrib/python/pypodman/pypodman/lib/actions/attach_action.py
+++ b/contrib/python/pypodman/pypodman/lib/actions/attach_action.py
@@ -27,7 +27,7 @@ class Attach(AbstractActionBase):
"""Construct Attach class."""
super().__init__(args)
if not args.image:
- raise ValueError('You must supply at least one image id'
+ raise ValueError('You must supply one image id'
' or name to be attached.')
def attach(self):