Skip to content

Commit

Permalink
Fix attributes ordering at v3/client.py
Browse files Browse the repository at this point in the history
Fix attributes alphabetical ordering at
v3/client.py.

Change-Id: I1ca71a56a6a710b231a8ed770835d45d3cf01cda
  • Loading branch information
rodrigods committed May 28, 2014
1 parent e146973 commit bb6c144
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keystoneclient/v3/client.py
Expand Up @@ -97,8 +97,8 @@ def __init__(self, **kwargs):
"""Initialize a new client for the Keystone v3 API."""
super(Client, self).__init__(**kwargs)

self.role_assignments = role_assignments.RoleAssignmentManager(self)
self.credentials = credentials.CredentialManager(self)
self.endpoint_filter = endpoint_filter.EndpointFilterManager(self)
self.endpoints = endpoints.EndpointManager(self)
self.domains = domains.DomainManager(self)
self.federation = federation.FederationManager(self)
Expand All @@ -107,11 +107,11 @@ def __init__(self, **kwargs):
self.policies = policies.PolicyManager(self)
self.projects = projects.ProjectManager(self)
self.regions = regions.RegionManager(self)
self.role_assignments = role_assignments.RoleAssignmentManager(self)
self.roles = roles.RoleManager(self)
self.services = services.ServiceManager(self)
self.users = users.UserManager(self)
self.trusts = trusts.TrustManager(self)
self.endpoint_filter = endpoint_filter.EndpointFilterManager(self)

# DEPRECATED: if session is passed then we go to the new behaviour of
# authenticating on the first required call.
Expand Down

0 comments on commit bb6c144

Please sign in to comment.