summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandrewbogott <abogott@wikimedia.org>2017-06-02 05:49:26 -0500
committerRob Cresswell <robert.cresswell@outlook.com>2017-06-04 16:29:16 +0000
commitbd8b21b9661a27a2215ae24ce9c4aea308ae5e4a (patch)
treea0403172d395df9cdfe559377479bfb57b17df4b
parent843b4754f6d83910b5463421659ccb3e3feaf75d (diff)
downloadhorizon-10.0.5.tar.gz
keystone api: Fix a typo that broke the check for MULTIDOMAIN_SUPPORT10.0.5
Change-Id: I3937bfc0e4a244daea2e26cc998e86d51bd07d91 (cherry picked from commit 0c775b73b365207e493481fabbfce37de34c4168)
-rw-r--r--openstack_dashboard/api/keystone.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack_dashboard/api/keystone.py b/openstack_dashboard/api/keystone.py
index c4cec2130..00f328a99 100644
--- a/openstack_dashboard/api/keystone.py
+++ b/openstack_dashboard/api/keystone.py
@@ -149,7 +149,7 @@ def keystoneclient(request, admin=False):
user = request.user
token_id = user.token.id
- if is_multi_domain_enabled:
+ if is_multi_domain_enabled():
# Cloud Admin, Domain Admin or Mixed Domain Admin
if is_domain_admin(request):
domain_token = request.session.get('domain_token')