From 937398abcfa9848b36efd95d845d98d865578c71 Mon Sep 17 00:00:00 2001
From: Jhon Honce <jhonce@redhat.com>
Date: Mon, 20 Aug 2018 08:15:14 -0700
Subject: [PATCH] Update error message from reviews

Signed-off-by: Jhon Honce <jhonce@redhat.com>

Closes: #1296
Approved by: rhatdan
---
 contrib/python/pypodman/pypodman/lib/actions/attach_action.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/python/pypodman/pypodman/lib/actions/attach_action.py b/contrib/python/pypodman/pypodman/lib/actions/attach_action.py
index 4a6d578f13..e9829e8943 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):