From b1972fb5610ac22c256334f4de25b0278e1c1daa Mon Sep 17 00:00:00 2001
From: Dean Troyer <dtroyer@gmail.com>
Date: Fri, 18 Sep 2015 14:17:01 -0500
Subject: [PATCH] Set default auth plugin back to 'password'

This was a hack that should be less needed now...

Change-Id: Id8cba87ad05b106aa36e356c0d70a568316fd327
---
 openstackclient/shell.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openstackclient/shell.py b/openstackclient/shell.py
index c08d619d44..c7ce41b2a2 100644
--- a/openstackclient/shell.py
+++ b/openstackclient/shell.py
@@ -203,7 +203,7 @@ class OpenStackShell(app.App):
             # Use service token authentication
             auth_type = 'token_endpoint'
         else:
-            auth_type = 'osc_password'
+            auth_type = 'password'
 
         project_id = getattr(self.options, 'project_id', None)
         project_name = getattr(self.options, 'project_name', None)