summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArie Bregman <abregman@redhat.com>2016-02-18 14:23:12 +0200
committerArie Bregman <abregman@redhat.com>2016-02-18 14:30:05 +0200
commit35ece66b4cc263816b9b28239901a5cbad61c8eb (patch)
tree8e53b9d0a20118de8ae78e43106c23d5ee1440a7
parent7865abc22b7289b2679f6848395d4850d544d1f0 (diff)
downloados-client-config-35ece66b4cc263816b9b28239901a5cbad61c8eb.tar.gz
Fix formulation
Fixed the formulation for the message that appears when cloud config couldn't be found. Change-Id: I1a4a83fe598d4eab52713061471fab8d1c46ec91
-rw-r--r--os_client_config/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/os_client_config/config.py b/os_client_config/config.py
index 1c47ed7..2f6adeb 100644
--- a/os_client_config/config.py
+++ b/os_client_config/config.py
@@ -432,7 +432,7 @@ class OpenStackConfig(object):
# Only validate cloud name if one was given
if name and name not in self.cloud_config['clouds']:
raise exceptions.OpenStackConfigException(
- "Named cloud {name} requested that was not found.".format(
+ "Cloud {name} was not found.".format(
name=name))
our_cloud = self.cloud_config['clouds'].get(name, dict())