summaryrefslogtreecommitdiff
path: root/openstackclient/identity/v2_0/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/identity/v2_0/service.py')
-rw-r--r--openstackclient/identity/v2_0/service.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/openstackclient/identity/v2_0/service.py b/openstackclient/identity/v2_0/service.py
index 21e32a51..51abfc18 100644
--- a/openstackclient/identity/v2_0/service.py
+++ b/openstackclient/identity/v2_0/service.py
@@ -141,8 +141,10 @@ class ShowService(show.ShowOne):
# FIXME(dtroyer): This exception should eventually come from
# common client exceptions
except identity_exc.NotFound:
- msg = "No service with a type, name or ID of '%s' exists." % \
- name_or_id
+ msg = "No service with exists."
+ # TODO(mordred): Where does name_or_id come from?
+ # msg = ("No service with a type, name or ID of '%s' exists." %
+ # name_or_id)
raise exceptions.CommandError(msg)
info = {}