From 0306b2b3de8d58a5194f4af3d170aab6177bae65 Mon Sep 17 00:00:00 2001 From: Fernando Diaz Date: Thu, 24 Sep 2015 21:05:12 -0500 Subject: [PATCH] Fix OS_PROJECT_ID not getting read by client Fixes the bug where OS_PROJECT_ID is not being picked up. Closes-Bug: #1499545 Change-Id: I95f62e28e40c6f0c8c2437e0a681f91a551a96bb --- barbicanclient/barbican.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barbicanclient/barbican.py b/barbicanclient/barbican.py index 725e6b25..757f7607 100644 --- a/barbicanclient/barbican.py +++ b/barbicanclient/barbican.py @@ -237,7 +237,7 @@ class Barbican(app.App): help='Defaults to env[OS_TENANT_ID].') parser.add_argument('--os-project-id', metavar='', - default=client.env('OS_PROJECT__ID'), + default=client.env('OS_PROJECT_ID'), help='Another way to specify tenant ID. ' 'This option is mutually exclusive with ' ' --os-tenant-id. '