From f66f99aee86ec000b791447881ec6f78bf5ee081 Mon Sep 17 00:00:00 2001 From: John Vrbanac Date: Mon, 18 Nov 2013 13:24:32 -0600 Subject: [PATCH] Fixing typo in exception message --- barbicanclient/common/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barbicanclient/common/auth.py b/barbicanclient/common/auth.py index d49900a7..4fd29f61 100644 --- a/barbicanclient/common/auth.py +++ b/barbicanclient/common/auth.py @@ -26,7 +26,7 @@ class KeystoneAuthV2(object): def __init__(self, auth_url='', username='', password='', tenant_name='', tenant_id=''): if not all([auth_url, username, password, tenant_name or tenant_id]): - raise ValueError('Please provide auht_url, username, password,' + raise ValueError('Please provide auth_url, username, password,' ' and tenant_id or tenant_name)') self._keystone = ksclient.Client(username=username, password=password,