summaryrefslogtreecommitdiff
path: root/keystoneclient/access.py
diff options
context:
space:
mode:
authorZhiQiang Fan <aji.zqfan@gmail.com>2013-08-28 23:54:52 +0800
committerZhiQiang Fan <aji.zqfan@gmail.com>2013-08-29 00:04:13 +0800
commit893c87b662e09fcc9d78e2f8a43fed3d9b921c0b (patch)
treeb82f4b5687922273fbacce0c797f075322e4deec /keystoneclient/access.py
parent1bd5b7328b2d25f88856912d25a89637996cceb5 (diff)
downloadpython-keystoneclient-893c87b662e09fcc9d78e2f8a43fed3d9b921c0b.tar.gz
Remove duplicate method in AccessInfo
Closes-Bug: #1217777 Method has_service_catalog is duplicate in AccessInfo, remove the first one because this class is used as a base class. Change-Id: Id5f6f0cfe223bd4f31b7c01a6bc1e750ad5a7cd8
Diffstat (limited to 'keystoneclient/access.py')
-rw-r--r--keystoneclient/access.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/keystoneclient/access.py b/keystoneclient/access.py
index 483e893..53cb0ff 100644
--- a/keystoneclient/access.py
+++ b/keystoneclient/access.py
@@ -61,9 +61,6 @@ class AccessInfo(dict):
self.service_catalog = service_catalog.ServiceCatalog.factory(
resource_dict=self, region_name=self.get('region_name'))
- def has_service_catalog(self):
- return 'serviceCatalog' in self
-
def will_expire_soon(self, stale_duration=None):
"""Determines if expiration is about to occur.