diff --git a/openstack_dashboard/models.py b/openstack_dashboard/models.py index 8b9d1ea..823144e 100644 --- a/openstack_dashboard/models.py +++ b/openstack_dashboard/models.py @@ -107,8 +107,6 @@ def doRequest(method, endpoint, additionalHeaders, request): except Exception: messages.error(request, _('Problem communicating with the Manager.')) - print responseStr - if 'Unauthorized' in responseStr or 'Authentication required.' in responseStr: messages.error(request, _('Token Unauthorized.')) elif 'Bad Request' in responseStr: diff --git a/openstack_dashboard/views.py b/openstack_dashboard/views.py index 872c4f7..b370077 100644 --- a/openstack_dashboard/views.py +++ b/openstack_dashboard/views.py @@ -116,7 +116,7 @@ def fogbow_Login(request, template_name=None, extra_context=None, **kwargs): def getContextForm(formOption): listForm = {IPConstants.AUTH_TOKEN, IPConstants.AUTH_OPENNEBULA, - IPConstants.AUTH_VOMS, IPConstants.AUTH_KEYSTONE} + IPConstants.AUTH_KEYSTONE} formChosen = IPConstants.AUTH_KEYSTONE form = KeystoneFogbow()